| Nom du symbole | Square Sr |
| Version Unicode | 1.1 |
| Unicode | U+33DB |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \33DB |
| Code hexadécimal | 0x33DB |
| Code HTML | ㏛ |
| LaTeX | \text{SR} |
| Symbole | ㏛ |
| Encodage URL (pourcent UTF-8) | %E3%8F%9B |
| Nom oral / lecteur d’écran | Square Sr |
| UTF-8 | E3 8F 9B |
| UTF-16 | 33DB |
| UTF-32 | 000033DB |
1\documentclass{article}2\usepackage{pifont}3\text{SR}4\end{document}Vous pouvez saisir le symbole square sr sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 13275 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "square sr", or use Unicode Hex Input with 33DB.
Ctrl + Shift + U, type 33db, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with unit symbol support.
1span.square-sr::before { content: "\33DB"; }1<span>㏛</span>La représentation du symbole Square Sr dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u33DB' or String.fromCodePoint(0x33DB) |
| Python | '\N{SQUARE SR}' or chr(13275) |
| Rust | '\u{33DB}' |
| C / C++ | UTF-8 source or wchar_t with U+33DB |
| Go | string(rune(0x33DB)) |
| Ruby | "\u33DB" |