Unicode Finder

"釀" U+91C0(CJK UNIFIED IDEOGRAPH-91C0)

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

Programming

C
\u91C0
JavaScript
\u91C0
Java
\u91C0
Json
\u91C0
Python
\u91C0
Perl
\x{91C0}
PHP
\x{91C0}
Ruby
\u{91C0}
Rust
\u{91C0}
Go
\u91C0

Web

CSS
\0091C0
HtmlDecimal
釀
HtmlHexadecimal
釀
Url
%E9%87%80

Code

MD5
170da7e38e4fc2c77e3ad4dd6697c273
Sha1
80b17b2c42e0fd5c6eead7364699934a4e67bec4
Base64
6YeA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91C0';
console.log(char);  // Output: 釀

Java:

char c = '\u91C0';
System.out.println(c);  // Output: 釀

JSON:

{"text": "\u91C0"}  // Value: 釀

Python:

char = '\u91C0'
print(char)  # Output: 釀

Perl:

my $char = "\x{91C0}";
print $char;  # Output: 釀

PHP:

$char = "\x{91C0}";
echo $char;  // Output: 釀

Ruby:

char = "\u{91C0}"
puts char  # Output: 釀

Rust:

let c = '\u{91C0}';
println!("{}", c);  // Output: 釀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0091C0";  /* Display: 釀 */
}

HTML Decimal:

<p>HTML decimal: &#37312;</p>  <!-- Display: 釀 -->

HTML Hexadecimal:

<p>HTML hex: &#x91C0;</p>  <!-- Display: 釀 -->

URL Encoding:

// 釀 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%80

Encodings

MD5:

170da7e38e4fc2c77e3ad4dd6697c273

SHA1:

80b17b2c42e0fd5c6eead7364699934a4e67bec4

Base64:

6YeA