Unicode Finder

"鎁" U+9381(CJK UNIFIED IDEOGRAPH-9381)

U+9381
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9381

Programming

C
\u9381
JavaScript
\u9381
Java
\u9381
Json
\u9381
Python
\u9381
Perl
\x{9381}
PHP
\x{9381}
Ruby
\u{9381}
Rust
\u{9381}
Go
\u9381

Web

CSS
\009381
HtmlDecimal
鎁
HtmlHexadecimal
鎁
Url
%E9%8E%81

Code

MD5
5a75a63bf578c29054b270b4eb9cda6d
Sha1
fe2df1cbd244fdeaae17ff13aff62d4aa9e0ec43
Base64
6Y6B

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9381';
console.log(char);  // Output: 鎁

Java:

char c = '\u9381';
System.out.println(c);  // Output: 鎁

JSON:

{"text": "\u9381"}  // Value: 鎁

Python:

char = '\u9381'
print(char)  # Output: 鎁

Perl:

my $char = "\x{9381}";
print $char;  # Output: 鎁

PHP:

$char = "\x{9381}";
echo $char;  // Output: 鎁

Ruby:

char = "\u{9381}"
puts char  # Output: 鎁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009381";  /* Display: 鎁 */
}

HTML Decimal:

<p>HTML decimal: &#37761;</p>  <!-- Display: 鎁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9381;</p>  <!-- Display: 鎁 -->

URL Encoding:

// 鎁 URL encoding
https://unicodefinder.com/search.php?query=%E9%8E%81

Encodings

MD5:

5a75a63bf578c29054b270b4eb9cda6d

SHA1:

fe2df1cbd244fdeaae17ff13aff62d4aa9e0ec43

Base64:

6Y6B