Unicode Finder

"狨" U+72E8(CJK UNIFIED IDEOGRAPH-72E8)

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

Programming

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

Web

CSS
\0072E8
HtmlDecimal
狨
HtmlHexadecimal
狨
Url
%E7%8B%A8

Code

MD5
f89e0da15c5380051fcf06648cfe4987
Sha1
733fc8b31a92f3e8522ec47742dd4ced2b82a8a8
Base64
54uo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u72E8';
console.log(char);  // Output: 狨

Java:

char c = '\u72E8';
System.out.println(c);  // Output: 狨

JSON:

{"text": "\u72E8"}  // Value: 狨

Python:

char = '\u72E8'
print(char)  # Output: 狨

Perl:

my $char = "\x{72E8}";
print $char;  # Output: 狨

PHP:

$char = "\x{72E8}";
echo $char;  // Output: 狨

Ruby:

char = "\u{72E8}"
puts char  # Output: 狨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29416;</p>  <!-- Display: 狨 -->

HTML Hexadecimal:

<p>HTML hex: &#x72E8;</p>  <!-- Display: 狨 -->

URL Encoding:

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

Encodings

MD5:

f89e0da15c5380051fcf06648cfe4987

SHA1:

733fc8b31a92f3e8522ec47742dd4ced2b82a8a8

Base64:

54uo