Unicode Finder

"⦇" U+2987(Z NOTATION LEFT IMAGE BRACKET)

U+2987
Block Name
Miscellaneous Mathematical Symbols-B
Name
Z NOTATION LEFT IMAGE BRACKET

Programming

C
\u2987
JavaScript
\u2987
Java
\u2987
Json
\u2987
Python
\u2987
Perl
\x{2987}
PHP
\x{2987}
Ruby
\u{2987}
Rust
\u{2987}
Go
\u2987

Web

CSS
\002987
HtmlDecimal
⦇
HtmlHexadecimal
⦇
Url
%E2%A6%87

Code

MD5
e172687f9240eff065b313315ab8f52b
Sha1
b8e55b5882e95c6a8f2cb0f0e69ee27ac04f0f50
Base64
4qaH

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2987';
console.log(char);  // Output: ⦇

Java:

char c = '\u2987';
System.out.println(c);  // Output: ⦇

JSON:

{"text": "\u2987"}  // Value: ⦇

Python:

char = '\u2987'
print(char)  # Output: ⦇

Perl:

my $char = "\x{2987}";
print $char;  # Output: ⦇

PHP:

$char = "\x{2987}";
echo $char;  // Output: ⦇

Ruby:

char = "\u{2987}"
puts char  # Output: ⦇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002987";  /* Display: ⦇ */
}

HTML Decimal:

<p>HTML decimal: &#10631;</p>  <!-- Display: ⦇ -->

HTML Hexadecimal:

<p>HTML hex: &#x2987;</p>  <!-- Display: ⦇ -->

URL Encoding:

// ⦇ URL encoding
https://unicodefinder.com/search.php?query=%E2%A6%87

Encodings

MD5:

e172687f9240eff065b313315ab8f52b

SHA1:

b8e55b5882e95c6a8f2cb0f0e69ee27ac04f0f50

Base64:

4qaH