Unicode Finder

"⎱" U+23B1(UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION)

U+23B1
Tên Khối
Miscellaneous Technical
Tên
UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION

Programming

C
\u23B1
JavaScript
\u23B1
Java
\u23B1
Json
\u23B1
Python
\u23B1
Perl
\x{23B1}
PHP
\x{23B1}
Ruby
\u{23B1}
Rust
\u{23B1}
Go
\u23B1

Web

CSS
\0023B1
HtmlDecimal
⎱
HtmlHexadecimal
⎱
Url
%E2%8E%B1

Code

MD5
eef011f7c04386c0af4deddf25c31899
Sha1
717be6bd64a3a4de03a48bb2ba79f5c87b009959
Base64
4o6x

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u23B1';
console.log(char);  // Output: ⎱

Java:

char c = '\u23B1';
System.out.println(c);  // Output: ⎱

JSON:

{"text": "\u23B1"}  // Value: ⎱

Python:

char = '\u23B1'
print(char)  # Output: ⎱

Perl:

my $char = "\x{23B1}";
print $char;  # Output: ⎱

PHP:

$char = "\x{23B1}";
echo $char;  // Output: ⎱

Ruby:

char = "\u{23B1}"
puts char  # Output: ⎱

Rust:

let c = '\u{23B1}';
println!("{}", c);  // Output: ⎱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0023B1";  /* Display: ⎱ */
}

HTML Decimal:

<p>HTML decimal: &#9137;</p>  <!-- Display: ⎱ -->

HTML Hexadecimal:

<p>HTML hex: &#x23B1;</p>  <!-- Display: ⎱ -->

URL Encoding:

// ⎱ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%B1

Encodings

MD5:

eef011f7c04386c0af4deddf25c31899

SHA1:

717be6bd64a3a4de03a48bb2ba79f5c87b009959

Base64:

4o6x