| Nombre del símbolo | Print Screen Symbol |
| Versión Unicode | 3.0 |
| Unicode | U+2399 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2399 |
| Código hexadecimal | 0x2399 |
| Código HTML | ⎙ |
| LaTeX | \text{PRINTSCREENSYMBOL} |
| Símbolo | ⎙ |
| Codificación URL (porcentaje UTF-8) | %E2%8E%99 |
| Nombre oral / lector de pantalla | Print Screen Symbol |
| UTF-8 | E2 8E 99 |
| UTF-16 | 2399 |
| UTF-32 | 00002399 |
1\documentclass{article}2\usepackage{pifont}3\text{PRINTSCREENSYMBOL}4\end{document}Puedes escribir el símbolo print screen en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9113 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "print screen symbol", or use Unicode Hex Input with 2399.
Ctrl + Shift + U, type 2399, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with technical symbol support.
1span.print-screen-symbol::before { content: "\2399"; }1<span>⎙</span>La representación del símbolo Print Screen en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2399' or String.fromCodePoint(9113) |
| Python | '\N{PRINT SCREEN SYMBOL}' or chr(9113) |
| Rust | '\u{2399}' |
| C / C++ | UTF-8 source or wchar_t with U+2399 |
| Go | string(rune(0x2399)) |
| Ruby | "\u{2399}" |