Unicode Finder

"⎫" U+23AB(RIGHT CURLY BRACKET UPPER HOOK)

U+23AB
區塊名稱
Miscellaneous Technical
名稱
RIGHT CURLY BRACKET UPPER HOOK

Programming

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

Web

CSS
\0023AB
HtmlDecimal
⎫
HtmlHexadecimal
⎫
Url
%E2%8E%AB

Code

MD5
c35738f25b882d498f149ee0c8a612c6
Sha1
842370ce94678251ebe9703bec3f53ad38285cab
Base64
4o6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u23AB';
console.log(char);  // Output: ⎫

Java:

char c = '\u23AB';
System.out.println(c);  // Output: ⎫

JSON:

{"text": "\u23AB"}  // Value: ⎫

Python:

char = '\u23AB'
print(char)  # Output: ⎫

Perl:

my $char = "\x{23AB}";
print $char;  # Output: ⎫

PHP:

$char = "\x{23AB}";
echo $char;  // Output: ⎫

Ruby:

char = "\u{23AB}"
puts char  # Output: ⎫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9131;</p>  <!-- Display: ⎫ -->

HTML Hexadecimal:

<p>HTML hex: &#x23AB;</p>  <!-- Display: ⎫ -->

URL Encoding:

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

Encodings

MD5:

c35738f25b882d498f149ee0c8a612c6

SHA1:

842370ce94678251ebe9703bec3f53ad38285cab

Base64:

4o6r