Unicode Finder

"❴" U+2774(MEDIUM LEFT CURLY BRACKET ORNAMENT)

U+2774
Block Name
Dingbats
Name
MEDIUM LEFT CURLY BRACKET ORNAMENT

Programming

C
\u2774
JavaScript
\u2774
Java
\u2774
Json
\u2774
Python
\u2774
Perl
\x{2774}
PHP
\x{2774}
Ruby
\u{2774}
Rust
\u{2774}
Go
\u2774

Web

CSS
\002774
HtmlDecimal
❴
HtmlHexadecimal
❴
Url
%E2%9D%B4

Code

MD5
73d6ef94e8d1993abe5ffc8dcffd5a4a
Sha1
bd5c9303e00159417530b703fe674c05c662bc6a
Base64
4p20

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2774';
console.log(char);  // Output: ❴

Java:

char c = '\u2774';
System.out.println(c);  // Output: ❴

JSON:

{"text": "\u2774"}  // Value: ❴

Python:

char = '\u2774'
print(char)  # Output: ❴

Perl:

my $char = "\x{2774}";
print $char;  # Output: ❴

PHP:

$char = "\x{2774}";
echo $char;  // Output: ❴

Ruby:

char = "\u{2774}"
puts char  # Output: ❴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002774";  /* Display: ❴ */
}

HTML Decimal:

<p>HTML decimal: &#10100;</p>  <!-- Display: ❴ -->

HTML Hexadecimal:

<p>HTML hex: &#x2774;</p>  <!-- Display: ❴ -->

URL Encoding:

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

Encodings

MD5:

73d6ef94e8d1993abe5ffc8dcffd5a4a

SHA1:

bd5c9303e00159417530b703fe674c05c662bc6a

Base64:

4p20