Unicode Finder

"酧" U+9167(CJK UNIFIED IDEOGRAPH-9167)

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

Programming

C
\u9167
JavaScript
\u9167
Java
\u9167
Json
\u9167
Python
\u9167
Perl
\x{9167}
PHP
\x{9167}
Ruby
\u{9167}
Rust
\u{9167}
Go
\u9167

Web

CSS
\009167
HtmlDecimal
酧
HtmlHexadecimal
酧
Url
%E9%85%A7

Code

MD5
6081d96c69359c8945a22a670144db27
Sha1
db9474f26f4cee9186687d2b27252e80d0c32f7f
Base64
6YWn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9167';
console.log(char);  // Output: 酧

Java:

char c = '\u9167';
System.out.println(c);  // Output: 酧

JSON:

{"text": "\u9167"}  // Value: 酧

Python:

char = '\u9167'
print(char)  # Output: 酧

Perl:

my $char = "\x{9167}";
print $char;  # Output: 酧

PHP:

$char = "\x{9167}";
echo $char;  // Output: 酧

Ruby:

char = "\u{9167}"
puts char  # Output: 酧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009167";  /* Display: 酧 */
}

HTML Decimal:

<p>HTML decimal: &#37223;</p>  <!-- Display: 酧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9167;</p>  <!-- Display: 酧 -->

URL Encoding:

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

Encodings

MD5:

6081d96c69359c8945a22a670144db27

SHA1:

db9474f26f4cee9186687d2b27252e80d0c32f7f

Base64:

6YWn