Unicode Finder

"酁" U+9141(CJK UNIFIED IDEOGRAPH-9141)

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

Programming

C
\u9141
JavaScript
\u9141
Java
\u9141
Json
\u9141
Python
\u9141
Perl
\x{9141}
PHP
\x{9141}
Ruby
\u{9141}
Rust
\u{9141}
Go
\u9141

Web

CSS
\009141
HtmlDecimal
酁
HtmlHexadecimal
酁
Url
%E9%85%81

Code

MD5
35148f0af7c3a19be2a4f7bf1251b12d
Sha1
ecc24939af7d69f676dade4717a478885e9379d9
Base64
6YWB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9141';
console.log(char);  // Output: 酁

Java:

char c = '\u9141';
System.out.println(c);  // Output: 酁

JSON:

{"text": "\u9141"}  // Value: 酁

Python:

char = '\u9141'
print(char)  # Output: 酁

Perl:

my $char = "\x{9141}";
print $char;  # Output: 酁

PHP:

$char = "\x{9141}";
echo $char;  // Output: 酁

Ruby:

char = "\u{9141}"
puts char  # Output: 酁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009141";  /* Display: 酁 */
}

HTML Decimal:

<p>HTML decimal: &#37185;</p>  <!-- Display: 酁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9141;</p>  <!-- Display: 酁 -->

URL Encoding:

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

Encodings

MD5:

35148f0af7c3a19be2a4f7bf1251b12d

SHA1:

ecc24939af7d69f676dade4717a478885e9379d9

Base64:

6YWB