Unicode Finder

"嬡" U+5B21(CJK UNIFIED IDEOGRAPH-5B21)

U+5B21
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5B21

Programming

C
\u5B21
JavaScript
\u5B21
Java
\u5B21
Json
\u5B21
Python
\u5B21
Perl
\x{5B21}
PHP
\x{5B21}
Ruby
\u{5B21}
Rust
\u{5B21}
Go
\u5B21

Web

CSS
\005B21
HtmlDecimal
嬡
HtmlHexadecimal
嬡
Url
%E5%AC%A1

Code

MD5
56256ad438e2f3cb736a3cf727fe39a0
Sha1
ed2d840171e4265fdb6b907705b01f32680c5aec
Base64
5ayh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5B21';
console.log(char);  // Output: 嬡

Java:

char c = '\u5B21';
System.out.println(c);  // Output: 嬡

JSON:

{"text": "\u5B21"}  // Value: 嬡

Python:

char = '\u5B21'
print(char)  # Output: 嬡

Perl:

my $char = "\x{5B21}";
print $char;  # Output: 嬡

PHP:

$char = "\x{5B21}";
echo $char;  // Output: 嬡

Ruby:

char = "\u{5B21}"
puts char  # Output: 嬡

Rust:

let c = '\u{5B21}';
println!("{}", c);  // Output: 嬡

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B21";  /* Display: 嬡 */
}

HTML Decimal:

<p>HTML decimal: &#23329;</p>  <!-- Display: 嬡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B21;</p>  <!-- Display: 嬡 -->

URL Encoding:

// 嬡 URL encoding
https://unicodefinder.com/search.php?query=%E5%AC%A1

Encodings

MD5:

56256ad438e2f3cb736a3cf727fe39a0

SHA1:

ed2d840171e4265fdb6b907705b01f32680c5aec

Base64:

5ayh