| Symbol Name | Left Parenthesis |
| Unicode Version | 1.1 |
| Unicode | U+0028 |
| Unicode block | |
| General category | Open Punctuation (Ps) |
| CSS Code | \0028 |
| Hex Code | 0x0028 |
| HTML Code | ( |
| LaTeX | ( |
| Symbol | ( |
| URL encode (UTF-8 percent) | %28 |
| Spoken / screen reader name | Left Parenthesis |
| UTF-8 | 28 |
| UTF-16 | 0028 |
| UTF-32 | 00000028 |
1\documentclass{article}2\usepackage{pifont}3(4\end{document}You can type the left parenthesis symbol on most modern devices with the help of following methods:
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>Left Parenthesis symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |