Unicode Finder

"酛" U+915B(CJK UNIFIED IDEOGRAPH-915B)

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

Programming

C
\u915B
JavaScript
\u915B
Java
\u915B
Json
\u915B
Python
\u915B
Perl
\x{915B}
PHP
\x{915B}
Ruby
\u{915B}
Rust
\u{915B}
Go
\u915B

Web

CSS
\00915B
HtmlDecimal
酛
HtmlHexadecimal
酛
Url
%E9%85%9B

Code

MD5
f530b1a9bc991142bd39ba45167a6f38
Sha1
a8978cf51dd95c68c1990c6ccb00956893861a28
Base64
6YWb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u915B';
console.log(char);  // Output: 酛

Java:

char c = '\u915B';
System.out.println(c);  // Output: 酛

JSON:

{"text": "\u915B"}  // Value: 酛

Python:

char = '\u915B'
print(char)  # Output: 酛

Perl:

my $char = "\x{915B}";
print $char;  # Output: 酛

PHP:

$char = "\x{915B}";
echo $char;  // Output: 酛

Ruby:

char = "\u{915B}"
puts char  # Output: 酛

Rust:

let c = '\u{915B}';
println!("{}", c);  // Output: 酛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00915B";  /* Display: 酛 */
}

HTML Decimal:

<p>HTML decimal: &#37211;</p>  <!-- Display: 酛 -->

HTML Hexadecimal:

<p>HTML hex: &#x915B;</p>  <!-- Display: 酛 -->

URL Encoding:

// 酛 URL encoding
https://unicodefinder.com/search.php?query=%E9%85%9B

Encodings

MD5:

f530b1a9bc991142bd39ba45167a6f38

SHA1:

a8978cf51dd95c68c1990c6ccb00956893861a28

Base64:

6YWb