Unicode Finder

"酦" U+9166(CJK UNIFIED IDEOGRAPH-9166)

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

Programming

C
\u9166
JavaScript
\u9166
Java
\u9166
Json
\u9166
Python
\u9166
Perl
\x{9166}
PHP
\x{9166}
Ruby
\u{9166}
Rust
\u{9166}
Go
\u9166

Web

CSS
\009166
HtmlDecimal
酦
HtmlHexadecimal
酦
Url
%E9%85%A6

Code

MD5
5529628926571925b683230a24d173d8
Sha1
f621791cb2c34de3500786a2bbbdfa39de3e067d
Base64
6YWm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9166';
console.log(char);  // Output: 酦

Java:

char c = '\u9166';
System.out.println(c);  // Output: 酦

JSON:

{"text": "\u9166"}  // Value: 酦

Python:

char = '\u9166'
print(char)  # Output: 酦

Perl:

my $char = "\x{9166}";
print $char;  # Output: 酦

PHP:

$char = "\x{9166}";
echo $char;  // Output: 酦

Ruby:

char = "\u{9166}"
puts char  # Output: 酦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009166";  /* Display: 酦 */
}

HTML Decimal:

<p>HTML decimal: &#37222;</p>  <!-- Display: 酦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9166;</p>  <!-- Display: 酦 -->

URL Encoding:

// 酦 URL encoding
https://unicodefinder.com/search.php?query=%E9%85%A6

Encodings

MD5:

5529628926571925b683230a24d173d8

SHA1:

f621791cb2c34de3500786a2bbbdfa39de3e067d

Base64:

6YWm