Unicode Finder

"⟬" U+27EC(MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET)

U+27EC
Block Name
Miscellaneous Mathematical Symbols-A
Name
MATHEMATICAL LEFT WHITE TORTOISE SHELL BRACKET

Programming

C
\u27EC
JavaScript
\u27EC
Java
\u27EC
Json
\u27EC
Python
\u27EC
Perl
\x{27EC}
PHP
\x{27EC}
Ruby
\u{27EC}
Rust
\u{27EC}
Go
\u27EC

Web

CSS
\0027EC
HtmlDecimal
⟬
HtmlHexadecimal
⟬
Url
%E2%9F%AC

Code

MD5
a62f174e7b89017098a56079e6c9326f
Sha1
c4a3b36e09677f5625905b5255bb35b4cf43be9d
Base64
4p+s

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27EC';
console.log(char);  // Output: ⟬

Java:

char c = '\u27EC';
System.out.println(c);  // Output: ⟬

JSON:

{"text": "\u27EC"}  // Value: ⟬

Python:

char = '\u27EC'
print(char)  # Output: ⟬

Perl:

my $char = "\x{27EC}";
print $char;  # Output: ⟬

PHP:

$char = "\x{27EC}";
echo $char;  // Output: ⟬

Ruby:

char = "\u{27EC}"
puts char  # Output: ⟬

Rust:

let c = '\u{27EC}';
println!("{}", c);  // Output: ⟬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0027EC";  /* Display: ⟬ */
}

HTML Decimal:

<p>HTML decimal: &#10220;</p>  <!-- Display: ⟬ -->

HTML Hexadecimal:

<p>HTML hex: &#x27EC;</p>  <!-- Display: ⟬ -->

URL Encoding:

// ⟬ URL encoding
https://unicodefinder.com/search.php?query=%E2%9F%AC

Encodings

MD5:

a62f174e7b89017098a56079e6c9326f

SHA1:

c4a3b36e09677f5625905b5255bb35b4cf43be9d

Base64:

4p+s