Unicode Finder

"醁" U+9181(CJK UNIFIED IDEOGRAPH-9181)

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

Programming

C
\u9181
JavaScript
\u9181
Java
\u9181
Json
\u9181
Python
\u9181
Perl
\x{9181}
PHP
\x{9181}
Ruby
\u{9181}
Rust
\u{9181}
Go
\u9181

Web

CSS
\009181
HtmlDecimal
醁
HtmlHexadecimal
醁
Url
%E9%86%81

Code

MD5
4fc749bf03600cc300b8b399f896c00e
Sha1
96aa38e5b8086ccc4035fbe1cec01551c9838bf9
Base64
6YaB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9181';
console.log(char);  // Output: 醁

Java:

char c = '\u9181';
System.out.println(c);  // Output: 醁

JSON:

{"text": "\u9181"}  // Value: 醁

Python:

char = '\u9181'
print(char)  # Output: 醁

Perl:

my $char = "\x{9181}";
print $char;  # Output: 醁

PHP:

$char = "\x{9181}";
echo $char;  // Output: 醁

Ruby:

char = "\u{9181}"
puts char  # Output: 醁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009181";  /* Display: 醁 */
}

HTML Decimal:

<p>HTML decimal: &#37249;</p>  <!-- Display: 醁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9181;</p>  <!-- Display: 醁 -->

URL Encoding:

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

Encodings

MD5:

4fc749bf03600cc300b8b399f896c00e

SHA1:

96aa38e5b8086ccc4035fbe1cec01551c9838bf9

Base64:

6YaB