Unicode Finder

"酰" U+9170(CJK UNIFIED IDEOGRAPH-9170)

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

Programming

C
\u9170
JavaScript
\u9170
Java
\u9170
Json
\u9170
Python
\u9170
Perl
\x{9170}
PHP
\x{9170}
Ruby
\u{9170}
Rust
\u{9170}
Go
\u9170

Web

CSS
\009170
HtmlDecimal
酰
HtmlHexadecimal
酰
Url
%E9%85%B0

Code

MD5
91a1eb2545461008e7babcfbee37b240
Sha1
9ec118a0bb8b9c05f78824af1e2cd58598ffa719
Base64
6YWw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9170';
console.log(char);  // Output: 酰

Java:

char c = '\u9170';
System.out.println(c);  // Output: 酰

JSON:

{"text": "\u9170"}  // Value: 酰

Python:

char = '\u9170'
print(char)  # Output: 酰

Perl:

my $char = "\x{9170}";
print $char;  # Output: 酰

PHP:

$char = "\x{9170}";
echo $char;  // Output: 酰

Ruby:

char = "\u{9170}"
puts char  # Output: 酰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009170";  /* Display: 酰 */
}

HTML Decimal:

<p>HTML decimal: &#37232;</p>  <!-- Display: 酰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9170;</p>  <!-- Display: 酰 -->

URL Encoding:

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

Encodings

MD5:

91a1eb2545461008e7babcfbee37b240

SHA1:

9ec118a0bb8b9c05f78824af1e2cd58598ffa719

Base64:

6YWw