Unicode Finder

"酂" U+9142(CJK UNIFIED IDEOGRAPH-9142)

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

Programming

C
\u9142
JavaScript
\u9142
Java
\u9142
Json
\u9142
Python
\u9142
Perl
\x{9142}
PHP
\x{9142}
Ruby
\u{9142}
Rust
\u{9142}
Go
\u9142

Web

CSS
\009142
HtmlDecimal
酂
HtmlHexadecimal
酂
Url
%E9%85%82

Code

MD5
c7868c2fe8a1d9ce9fc8566ac0f65e45
Sha1
9d31288ae14e1ca4d17fa329fe03ed53b8a602ef
Base64
6YWC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9142';
console.log(char);  // Output: 酂

Java:

char c = '\u9142';
System.out.println(c);  // Output: 酂

JSON:

{"text": "\u9142"}  // Value: 酂

Python:

char = '\u9142'
print(char)  # Output: 酂

Perl:

my $char = "\x{9142}";
print $char;  # Output: 酂

PHP:

$char = "\x{9142}";
echo $char;  // Output: 酂

Ruby:

char = "\u{9142}"
puts char  # Output: 酂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009142";  /* Display: 酂 */
}

HTML Decimal:

<p>HTML decimal: &#37186;</p>  <!-- Display: 酂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9142;</p>  <!-- Display: 酂 -->

URL Encoding:

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

Encodings

MD5:

c7868c2fe8a1d9ce9fc8566ac0f65e45

SHA1:

9d31288ae14e1ca4d17fa329fe03ed53b8a602ef

Base64:

6YWC