Unicode Finder

"嵲" U+5D72(CJK UNIFIED IDEOGRAPH-5D72)

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

Programming

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

Web

CSS
\005D72
HtmlDecimal
嵲
HtmlHexadecimal
嵲
Url
%E5%B5%B2

Code

MD5
0c0c7c643e3dedf722c8bd78eb5e4340
Sha1
2afaf284ca0ec286aee209094e64248c748c25ce
Base64
5bWy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5D72';
console.log(char);  // Output: 嵲

Java:

char c = '\u5D72';
System.out.println(c);  // Output: 嵲

JSON:

{"text": "\u5D72"}  // Value: 嵲

Python:

char = '\u5D72'
print(char)  # Output: 嵲

Perl:

my $char = "\x{5D72}";
print $char;  # Output: 嵲

PHP:

$char = "\x{5D72}";
echo $char;  // Output: 嵲

Ruby:

char = "\u{5D72}"
puts char  # Output: 嵲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23922;</p>  <!-- Display: 嵲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5D72;</p>  <!-- Display: 嵲 -->

URL Encoding:

// 嵲 URL encoding
https://unicodefinder.com/search.php?query=%E5%B5%B2

Encodings

MD5:

0c0c7c643e3dedf722c8bd78eb5e4340

SHA1:

2afaf284ca0ec286aee209094e64248c748c25ce

Base64:

5bWy