Unicode Finder

"狜" U+72DC(CJK UNIFIED IDEOGRAPH-72DC)

U+72DC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-72DC

Programming

C
\u72DC
JavaScript
\u72DC
Java
\u72DC
Json
\u72DC
Python
\u72DC
Perl
\x{72DC}
PHP
\x{72DC}
Ruby
\u{72DC}
Rust
\u{72DC}
Go
\u72DC

Web

CSS
\0072DC
HtmlDecimal
狜
HtmlHexadecimal
狜
Url
%E7%8B%9C

Code

MD5
3bf73263e1004e3b11849960a4861eeb
Sha1
2dfbc8b5fe0ae92c513fd58b164ee2135b8ebde3
Base64
54uc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72DC';
console.log(char);  // Output: 狜

Java:

char c = '\u72DC';
System.out.println(c);  // Output: 狜

JSON:

{"text": "\u72DC"}  // Value: 狜

Python:

char = '\u72DC'
print(char)  # Output: 狜

Perl:

my $char = "\x{72DC}";
print $char;  # Output: 狜

PHP:

$char = "\x{72DC}";
echo $char;  // Output: 狜

Ruby:

char = "\u{72DC}"
puts char  # Output: 狜

Rust:

let c = '\u{72DC}';
println!("{}", c);  // Output: 狜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0072DC";  /* Display: 狜 */
}

HTML Decimal:

<p>HTML decimal: &#29404;</p>  <!-- Display: 狜 -->

HTML Hexadecimal:

<p>HTML hex: &#x72DC;</p>  <!-- Display: 狜 -->

URL Encoding:

// 狜 URL encoding
https://unicodefinder.com/search.php?query=%E7%8B%9C

Encodings

MD5:

3bf73263e1004e3b11849960a4861eeb

SHA1:

2dfbc8b5fe0ae92c513fd58b164ee2135b8ebde3

Base64:

54uc