Unicode Finder

"鎆" U+9386(CJK UNIFIED IDEOGRAPH-9386)

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

Programming

C
\u9386
JavaScript
\u9386
Java
\u9386
Json
\u9386
Python
\u9386
Perl
\x{9386}
PHP
\x{9386}
Ruby
\u{9386}
Rust
\u{9386}
Go
\u9386

Web

CSS
\009386
HtmlDecimal
鎆
HtmlHexadecimal
鎆
Url
%E9%8E%86

Code

MD5
d54dec72b943759e8f0d77c67ff74425
Sha1
fe4041ef2c97ac9148bce5ea5f2bf4eccbb1d29e
Base64
6Y6G

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9386';
console.log(char);  // Output: 鎆

Java:

char c = '\u9386';
System.out.println(c);  // Output: 鎆

JSON:

{"text": "\u9386"}  // Value: 鎆

Python:

char = '\u9386'
print(char)  # Output: 鎆

Perl:

my $char = "\x{9386}";
print $char;  # Output: 鎆

PHP:

$char = "\x{9386}";
echo $char;  // Output: 鎆

Ruby:

char = "\u{9386}"
puts char  # Output: 鎆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009386";  /* Display: 鎆 */
}

HTML Decimal:

<p>HTML decimal: &#37766;</p>  <!-- Display: 鎆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9386;</p>  <!-- Display: 鎆 -->

URL Encoding:

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

Encodings

MD5:

d54dec72b943759e8f0d77c67ff74425

SHA1:

fe4041ef2c97ac9148bce5ea5f2bf4eccbb1d29e

Base64:

6Y6G