Unicode Finder

"狐" U+72D0(CJK UNIFIED IDEOGRAPH-72D0)

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

Programming

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

Web

CSS
\0072D0
HtmlDecimal
狐
HtmlHexadecimal
狐
Url
%E7%8B%90

Code

MD5
f8b9f2fa75dd467ea874e01c8afc7fb9
Sha1
0ca8d8616381736107ba8f6831663c3c93e68131
Base64
54uQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u72D0';
console.log(char);  // Output: 狐

Java:

char c = '\u72D0';
System.out.println(c);  // Output: 狐

JSON:

{"text": "\u72D0"}  // Value: 狐

Python:

char = '\u72D0'
print(char)  # Output: 狐

Perl:

my $char = "\x{72D0}";
print $char;  # Output: 狐

PHP:

$char = "\x{72D0}";
echo $char;  // Output: 狐

Ruby:

char = "\u{72D0}"
puts char  # Output: 狐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29392;</p>  <!-- Display: 狐 -->

HTML Hexadecimal:

<p>HTML hex: &#x72D0;</p>  <!-- Display: 狐 -->

URL Encoding:

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

Encodings

MD5:

f8b9f2fa75dd467ea874e01c8afc7fb9

SHA1:

0ca8d8616381736107ba8f6831663c3c93e68131

Base64:

54uQ