Right Square Bracket

]

Shortcodes

Copy useful codes for right square bracket symbol ] to use in websites, apps, blogs, and docs.

Unicode
U+005D
Alt Code
93
HTML Code
]
HEX Code
]
CSS Code
\005D
JS/JSON
\u005D
Unix/C/PHP/JAVA
0x005D
URL-encode
%5D

Customize Right Square Bracket

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

]
  

How to use Right Square Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>]</span>
HTML Code:
<span>&#93;</span>
HEX Code:
<span>&#x005D;</span>

Add with CSS

.right-square-bracket::before {
  content: '\\005D';
}

Set it in JavaScript

document.querySelector('.right-square-bracket').textContent = ']';
copied