Unicode Finder

"酑" U+9151(CJK UNIFIED IDEOGRAPH-9151)

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

Programming

C
\u9151
JavaScript
\u9151
Java
\u9151
Json
\u9151
Python
\u9151
Perl
\x{9151}
PHP
\x{9151}
Ruby
\u{9151}
Rust
\u{9151}
Go
\u9151

Web

CSS
\009151
HtmlDecimal
酑
HtmlHexadecimal
酑
Url
%E9%85%91

Code

MD5
a8c187a42160545b187350c692d6af29
Sha1
5c2675dafc9bc782482d2f83a123a312675c0f58
Base64
6YWR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9151';
console.log(char);  // Output: 酑

Java:

char c = '\u9151';
System.out.println(c);  // Output: 酑

JSON:

{"text": "\u9151"}  // Value: 酑

Python:

char = '\u9151'
print(char)  # Output: 酑

Perl:

my $char = "\x{9151}";
print $char;  # Output: 酑

PHP:

$char = "\x{9151}";
echo $char;  // Output: 酑

Ruby:

char = "\u{9151}"
puts char  # Output: 酑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009151";  /* Display: 酑 */
}

HTML Decimal:

<p>HTML decimal: &#37201;</p>  <!-- Display: 酑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9151;</p>  <!-- Display: 酑 -->

URL Encoding:

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

Encodings

MD5:

a8c187a42160545b187350c692d6af29

SHA1:

5c2675dafc9bc782482d2f83a123a312675c0f58

Base64:

6YWR