Unicode Finder

"狖" U+72D6(CJK UNIFIED IDEOGRAPH-72D6)

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

Programming

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

Web

CSS
\0072D6
HtmlDecimal
狖
HtmlHexadecimal
狖
Url
%E7%8B%96

Code

MD5
309f5679b1369a950e6b936369a39443
Sha1
472fbc73397225ebed5cc960ac0cc623a46c46cc
Base64
54uW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72D6';
console.log(char);  // Output: 狖

Java:

char c = '\u72D6';
System.out.println(c);  // Output: 狖

JSON:

{"text": "\u72D6"}  // Value: 狖

Python:

char = '\u72D6'
print(char)  # Output: 狖

Perl:

my $char = "\x{72D6}";
print $char;  # Output: 狖

PHP:

$char = "\x{72D6}";
echo $char;  // Output: 狖

Ruby:

char = "\u{72D6}"
puts char  # Output: 狖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29398;</p>  <!-- Display: 狖 -->

HTML Hexadecimal:

<p>HTML hex: &#x72D6;</p>  <!-- Display: 狖 -->

URL Encoding:

// 狖 URL encoding
https://unicodefinder.com/search.php?query=%E7%8B%96

Encodings

MD5:

309f5679b1369a950e6b936369a39443

SHA1:

472fbc73397225ebed5cc960ac0cc623a46c46cc

Base64:

54uW