Unicode Finder

"狲" U+72F2(CJK UNIFIED IDEOGRAPH-72F2)

U+72F2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-72F2

Programming

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

Web

CSS
\0072F2
HtmlDecimal
狲
HtmlHexadecimal
狲
Url
%E7%8B%B2

Code

MD5
0a1e8c4a2895186a76546249a6426f16
Sha1
c9f5e2b3fd2071c2b8c25782930fc008d6ff0675
Base64
54uy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u72F2';
console.log(char);  // Output: 狲

Java:

char c = '\u72F2';
System.out.println(c);  // Output: 狲

JSON:

{"text": "\u72F2"}  // Value: 狲

Python:

char = '\u72F2'
print(char)  # Output: 狲

Perl:

my $char = "\x{72F2}";
print $char;  # Output: 狲

PHP:

$char = "\x{72F2}";
echo $char;  // Output: 狲

Ruby:

char = "\u{72F2}"
puts char  # Output: 狲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29426;</p>  <!-- Display: 狲 -->

HTML Hexadecimal:

<p>HTML hex: &#x72F2;</p>  <!-- Display: 狲 -->

URL Encoding:

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

Encodings

MD5:

0a1e8c4a2895186a76546249a6426f16

SHA1:

c9f5e2b3fd2071c2b8c25782930fc008d6ff0675

Base64:

54uy