Unicode Finder

"⎬" U+23AC(RIGHT CURLY BRACKET MIDDLE PIECE)

U+23AC
區塊名稱
Miscellaneous Technical
名稱
RIGHT CURLY BRACKET MIDDLE PIECE

Programming

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

Web

CSS
\0023AC
HtmlDecimal
⎬
HtmlHexadecimal
⎬
Url
%E2%8E%AC

Code

MD5
a118b49c7279faa2094bf35249608eda
Sha1
94fa9126e6e73b4906df3e29d78b5096427ebd2f
Base64
4o6s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u23AC';
console.log(char);  // Output: ⎬

Java:

char c = '\u23AC';
System.out.println(c);  // Output: ⎬

JSON:

{"text": "\u23AC"}  // Value: ⎬

Python:

char = '\u23AC'
print(char)  # Output: ⎬

Perl:

my $char = "\x{23AC}";
print $char;  # Output: ⎬

PHP:

$char = "\x{23AC}";
echo $char;  // Output: ⎬

Ruby:

char = "\u{23AC}"
puts char  # Output: ⎬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#9132;</p>  <!-- Display: ⎬ -->

HTML Hexadecimal:

<p>HTML hex: &#x23AC;</p>  <!-- Display: ⎬ -->

URL Encoding:

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

Encodings

MD5:

a118b49c7279faa2094bf35249608eda

SHA1:

94fa9126e6e73b4906df3e29d78b5096427ebd2f

Base64:

4o6s