Unicode Finder

"❵" U+2775(MEDIUM RIGHT CURLY BRACKET ORNAMENT)

U+2775
Block Name
Dingbats
Name
MEDIUM RIGHT CURLY BRACKET ORNAMENT

Programming

C
\u2775
JavaScript
\u2775
Java
\u2775
Json
\u2775
Python
\u2775
Perl
\x{2775}
PHP
\x{2775}
Ruby
\u{2775}
Rust
\u{2775}
Go
\u2775

Web

CSS
\002775
HtmlDecimal
❵
HtmlHexadecimal
❵
Url
%E2%9D%B5

Code

MD5
cf37ec22e9f980f69d87bd0552f37ef3
Sha1
150e1904df943344d379163b258d5a86dfb95117
Base64
4p21

Usage Examples

Programming Languages

C:

char c = '\u2775';
printf("%c\n", c);  // Output: ❵

JavaScript:

const char = '\u2775';
console.log(char);  // Output: ❵

Java:

char c = '\u2775';
System.out.println(c);  // Output: ❵

JSON:

{"text": "\u2775"}  // Value: ❵

Python:

char = '\u2775'
print(char)  # Output: ❵

Perl:

my $char = "\x{2775}";
print $char;  # Output: ❵

PHP:

$char = "\x{2775}";
echo $char;  // Output: ❵

Ruby:

char = "\u{2775}"
puts char  # Output: ❵

Rust:

let c = '\u{2775}';
println!("{}", c);  // Output: ❵

Go:

char := '\u2775'
fmt.Printf("%c\n", char)  // Output: ❵

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002775";  /* Display: ❵ */
}

HTML Decimal:

<p>HTML decimal: &#10101;</p>  <!-- Display: ❵ -->

HTML Hexadecimal:

<p>HTML hex: &#x2775;</p>  <!-- Display: ❵ -->

URL Encoding:

// ❵ URL encoding
https://unicodefinder.com/search.php?query=%E2%9D%B5

Encodings

MD5:

cf37ec22e9f980f69d87bd0552f37ef3

SHA1:

150e1904df943344d379163b258d5a86dfb95117

Base64:

4p21