Right Curly Bracket

}

Shortcodes

Copy and paste codes for Right Curly Bracket symbol } to use in your websites, apps, blogs, and more.

Unicode
U+007D
Alt Code
125
HTML Code
}
HEX Code
}
CSS Code
\007D
JS/JSON
\u007D
Unix/C/PHP/JAVA
0x007D
URL-encode
%7D
copied

Customize Right Curly Bracket Symbol

Customize } symbol as you like and download Right Curly Bracket as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
}
 

How to type Right Curly Bracket symbol } ?

Using Right Curly Bracket Alt Code:

You can type the Right Curly Bracket symbol } using your keyboard by using the Alt Code for Right Curly Bracket. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 125 using the Numpad.
  3. Release the Alt key.

This will make the } appear on your screen.

How to add Right Curly Bracket symbol in HTML, CSS, and JS?

Insert } Right Curly Bracket using HTML

1. Copy-paste Right Curly Bracket directly:
<span>}</span>
2. HTML Decimal Code:
<span>&#125;</span>
3. Hexadecimal Code:
<span>&#x007D;</span>
Preview: }

Add Right Curly Bracket symbol with CSS

.right-curly-bracket::before {
    content: '\\007D';
}
Preview: Right Curly Bracket

Right Curly Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.right-curly-bracket').textContent = '}';
2. Unicode Escape for }:
document.querySelector('.right-curly-bracket').textContent = '\u007D';
Preview: }