Unicode Finder

"鎐" U+9390(CJK UNIFIED IDEOGRAPH-9390)

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

Programming

C
\u9390
JavaScript
\u9390
Java
\u9390
Json
\u9390
Python
\u9390
Perl
\x{9390}
PHP
\x{9390}
Ruby
\u{9390}
Rust
\u{9390}
Go
\u9390

Web

CSS
\009390
HtmlDecimal
鎐
HtmlHexadecimal
鎐
Url
%E9%8E%90

Code

MD5
34ec60a6c5d4d9c7cab2e7f56ed4304f
Sha1
5371b8c51e266687849af9081b9d8c37c7a219ca
Base64
6Y6Q

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9390';
console.log(char);  // Output: 鎐

Java:

char c = '\u9390';
System.out.println(c);  // Output: 鎐

JSON:

{"text": "\u9390"}  // Value: 鎐

Python:

char = '\u9390'
print(char)  # Output: 鎐

Perl:

my $char = "\x{9390}";
print $char;  # Output: 鎐

PHP:

$char = "\x{9390}";
echo $char;  // Output: 鎐

Ruby:

char = "\u{9390}"
puts char  # Output: 鎐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009390";  /* Display: 鎐 */
}

HTML Decimal:

<p>HTML decimal: &#37776;</p>  <!-- Display: 鎐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9390;</p>  <!-- Display: 鎐 -->

URL Encoding:

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

Encodings

MD5:

34ec60a6c5d4d9c7cab2e7f56ed4304f

SHA1:

5371b8c51e266687849af9081b9d8c37c7a219ca

Base64:

6Y6Q