Left Parenthesis

(

Shortcodes

Copy useful codes for left parenthesis symbol ( to use in websites, apps, blogs, and docs.

Unicode
U+0028
Alt Code
40
HTML Code
(
HEX Code
(
CSS Code
\0028
JS/JSON
\u0028
Unix/C/PHP/JAVA
0x0028
URL-encode
%28

Customize Left Parenthesis

Customize (, download it as SVG or PNG, or copy the generated HTML snippet.

(
  

How to use Left Parenthesis Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>(</span>
HTML Code:
<span>&#40;</span>
HEX Code:
<span>&#x0028;</span>

Add with CSS

.left-parenthesis::before {
  content: '\\0028';
}

Set it in JavaScript

document.querySelector('.left-parenthesis').textContent = '(';
copied