Unicode Finder

"酬" U+916C(CJK UNIFIED IDEOGRAPH-916C)

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

Programming

C
\u916C
JavaScript
\u916C
Java
\u916C
Json
\u916C
Python
\u916C
Perl
\x{916C}
PHP
\x{916C}
Ruby
\u{916C}
Rust
\u{916C}
Go
\u916C

Web

CSS
\00916C
HtmlDecimal
酬
HtmlHexadecimal
酬
Url
%E9%85%AC

Code

MD5
64fce5c72a1f1b5d957227e55818ddc7
Sha1
1590ac5d667f7815ce4dc230a94339c36b14d65c
Base64
6YWs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u916C';
console.log(char);  // Output: 酬

Java:

char c = '\u916C';
System.out.println(c);  // Output: 酬

JSON:

{"text": "\u916C"}  // Value: 酬

Python:

char = '\u916C'
print(char)  # Output: 酬

Perl:

my $char = "\x{916C}";
print $char;  # Output: 酬

PHP:

$char = "\x{916C}";
echo $char;  // Output: 酬

Ruby:

char = "\u{916C}"
puts char  # Output: 酬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37228;</p>  <!-- Display: 酬 -->

HTML Hexadecimal:

<p>HTML hex: &#x916C;</p>  <!-- Display: 酬 -->

URL Encoding:

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

Encodings

MD5:

64fce5c72a1f1b5d957227e55818ddc7

SHA1:

1590ac5d667f7815ce4dc230a94339c36b14d65c

Base64:

6YWs