Unicode Finder

"霡" U+9721(CJK UNIFIED IDEOGRAPH-9721)

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

Programming

C
\u9721
JavaScript
\u9721
Java
\u9721
Json
\u9721
Python
\u9721
Perl
\x{9721}
PHP
\x{9721}
Ruby
\u{9721}
Rust
\u{9721}
Go
\u9721

Web

CSS
\009721
HtmlDecimal
霡
HtmlHexadecimal
霡
Url
%E9%9C%A1

Code

MD5
f8e33ed87be32b1f9d895143904f2d85
Sha1
7b5ab95526455677ef6275ceffade10855774880
Base64
6Zyh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9721';
console.log(char);  // Output: 霡

Java:

char c = '\u9721';
System.out.println(c);  // Output: 霡

JSON:

{"text": "\u9721"}  // Value: 霡

Python:

char = '\u9721'
print(char)  # Output: 霡

Perl:

my $char = "\x{9721}";
print $char;  # Output: 霡

PHP:

$char = "\x{9721}";
echo $char;  // Output: 霡

Ruby:

char = "\u{9721}"
puts char  # Output: 霡

Rust:

let c = '\u{9721}';
println!("{}", c);  // Output: 霡

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009721";  /* Display: 霡 */
}

HTML Decimal:

<p>HTML decimal: &#38689;</p>  <!-- Display: 霡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9721;</p>  <!-- Display: 霡 -->

URL Encoding:

// 霡 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%A1

Encodings

MD5:

f8e33ed87be32b1f9d895143904f2d85

SHA1:

7b5ab95526455677ef6275ceffade10855774880

Base64:

6Zyh