Unicode Finder

"❲" U+2772(LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT)

U+2772
Block Name
Dingbats
Name
LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT

Programming

C
\u2772
JavaScript
\u2772
Java
\u2772
Json
\u2772
Python
\u2772
Perl
\x{2772}
PHP
\x{2772}
Ruby
\u{2772}
Rust
\u{2772}
Go
\u2772

Web

CSS
\002772
HtmlDecimal
❲
HtmlHexadecimal
❲
Url
%E2%9D%B2

Code

MD5
72dbbe391c1b96a24278cc124723c51d
Sha1
301113cef620714071afc7b37e08f4a20f1a9262
Base64
4p2y

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2772';
console.log(char);  // Output: ❲

Java:

char c = '\u2772';
System.out.println(c);  // Output: ❲

JSON:

{"text": "\u2772"}  // Value: ❲

Python:

char = '\u2772'
print(char)  # Output: ❲

Perl:

my $char = "\x{2772}";
print $char;  # Output: ❲

PHP:

$char = "\x{2772}";
echo $char;  // Output: ❲

Ruby:

char = "\u{2772}"
puts char  # Output: ❲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002772";  /* Display: ❲ */
}

HTML Decimal:

<p>HTML decimal: &#10098;</p>  <!-- Display: ❲ -->

HTML Hexadecimal:

<p>HTML hex: &#x2772;</p>  <!-- Display: ❲ -->

URL Encoding:

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

Encodings

MD5:

72dbbe391c1b96a24278cc124723c51d

SHA1:

301113cef620714071afc7b37e08f4a20f1a9262

Base64:

4p2y