| Nom du symbole | Left Parenthesis |
| Version Unicode | 1.1 |
| Unicode | U+0028 |
| Bloc Unicode | |
| Catégorie générale | Open Punctuation (Ps) |
| Code CSS | \0028 |
| Code hexadécimal | 0x0028 |
| Code HTML | ( |
| LaTeX | ( |
| Symbole | ( |
| Encodage URL (pourcent UTF-8) | %28 |
| Nom oral / lecteur d’écran | Left Parenthesis |
| UTF-8 | 28 |
| UTF-16 | 0028 |
| UTF-32 | 00000028 |
1\documentclass{article}2\usepackage{pifont}3(4\end{document}Vous pouvez saisir le symbole left parenthesis sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 40 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "left parenthesis", or use Unicode Hex Input with 0028.
Ctrl + Shift + U, type 0028, 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 bracket and quote support.
1span.left-parenthesis::before { content: "\0028"; }1<span>(</span>La représentation du symbole Left Parenthesis dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u0028' or String.fromCodePoint(40) |
| Python | '\N{LEFT PARENTHESIS}' or chr(40) |
| Rust | '\u{0028}' |
| C / C++ | UTF-8 source or wchar_t with U+0028 |
| Go | string(rune(0x0028)) |
| Ruby | "\u{0028}" |