Unicode Finder

"酜" U+915C(CJK UNIFIED IDEOGRAPH-915C)

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

Programming

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

Web

CSS
\00915C
HtmlDecimal
酜
HtmlHexadecimal
酜
Url
%E9%85%9C

Code

MD5
8fddb8755890b6190674871296a26c9b
Sha1
2d4123e75e092bb22fe21377e29fc599bc415122
Base64
6YWc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u915C';
console.log(char);  // Output: 酜

Java:

char c = '\u915C';
System.out.println(c);  // Output: 酜

JSON:

{"text": "\u915C"}  // Value: 酜

Python:

char = '\u915C'
print(char)  # Output: 酜

Perl:

my $char = "\x{915C}";
print $char;  # Output: 酜

PHP:

$char = "\x{915C}";
echo $char;  // Output: 酜

Ruby:

char = "\u{915C}"
puts char  # Output: 酜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37212;</p>  <!-- Display: 酜 -->

HTML Hexadecimal:

<p>HTML hex: &#x915C;</p>  <!-- Display: 酜 -->

URL Encoding:

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

Encodings

MD5:

8fddb8755890b6190674871296a26c9b

SHA1:

2d4123e75e092bb22fe21377e29fc599bc415122

Base64:

6YWc