Unicode Finder

"酘" U+9158(CJK UNIFIED IDEOGRAPH-9158)

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

Programming

C
\u9158
JavaScript
\u9158
Java
\u9158
Json
\u9158
Python
\u9158
Perl
\x{9158}
PHP
\x{9158}
Ruby
\u{9158}
Rust
\u{9158}
Go
\u9158

Web

CSS
\009158
HtmlDecimal
酘
HtmlHexadecimal
酘
Url
%E9%85%98

Code

MD5
0b277f711b4f957bdfebc9d705ea691b
Sha1
2e97f2c2498a90c3a8063a9298b423188fdd1673
Base64
6YWY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9158';
console.log(char);  // Output: 酘

Java:

char c = '\u9158';
System.out.println(c);  // Output: 酘

JSON:

{"text": "\u9158"}  // Value: 酘

Python:

char = '\u9158'
print(char)  # Output: 酘

Perl:

my $char = "\x{9158}";
print $char;  # Output: 酘

PHP:

$char = "\x{9158}";
echo $char;  // Output: 酘

Ruby:

char = "\u{9158}"
puts char  # Output: 酘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009158";  /* Display: 酘 */
}

HTML Decimal:

<p>HTML decimal: &#37208;</p>  <!-- Display: 酘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9158;</p>  <!-- Display: 酘 -->

URL Encoding:

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

Encodings

MD5:

0b277f711b4f957bdfebc9d705ea691b

SHA1:

2e97f2c2498a90c3a8063a9298b423188fdd1673

Base64:

6YWY