Unicode Finder

"醉" U+9189(CJK UNIFIED IDEOGRAPH-9189)

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

Programming

C
\u9189
JavaScript
\u9189
Java
\u9189
Json
\u9189
Python
\u9189
Perl
\x{9189}
PHP
\x{9189}
Ruby
\u{9189}
Rust
\u{9189}
Go
\u9189

Web

CSS
\009189
HtmlDecimal
醉
HtmlHexadecimal
醉
Url
%E9%86%89

Code

MD5
3da9c8fd21f9359edf039c4154701460
Sha1
5c2df0ffb357591bb4abc29727a46ef4e67fe148
Base64
6YaJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9189';
console.log(char);  // Output: 醉

Java:

char c = '\u9189';
System.out.println(c);  // Output: 醉

JSON:

{"text": "\u9189"}  // Value: 醉

Python:

char = '\u9189'
print(char)  # Output: 醉

Perl:

my $char = "\x{9189}";
print $char;  # Output: 醉

PHP:

$char = "\x{9189}";
echo $char;  // Output: 醉

Ruby:

char = "\u{9189}"
puts char  # Output: 醉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009189";  /* Display: 醉 */
}

HTML Decimal:

<p>HTML decimal: &#37257;</p>  <!-- Display: 醉 -->

HTML Hexadecimal:

<p>HTML hex: &#x9189;</p>  <!-- Display: 醉 -->

URL Encoding:

// 醉 URL encoding
https://unicodefinder.com/search.php?query=%E9%86%89

Encodings

MD5:

3da9c8fd21f9359edf039c4154701460

SHA1:

5c2df0ffb357591bb4abc29727a46ef4e67fe148

Base64:

6YaJ