Unicode Finder

"鎂" U+9382(CJK UNIFIED IDEOGRAPH-9382)

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

Programming

C
\u9382
JavaScript
\u9382
Java
\u9382
Json
\u9382
Python
\u9382
Perl
\x{9382}
PHP
\x{9382}
Ruby
\u{9382}
Rust
\u{9382}
Go
\u9382

Web

CSS
\009382
HtmlDecimal
鎂
HtmlHexadecimal
鎂
Url
%E9%8E%82

Code

MD5
b99641d2b214c270e356ebf0418269ce
Sha1
487f6257214212de4a141e4d48de864ac1943e63
Base64
6Y6C

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9382';
console.log(char);  // Output: 鎂

Java:

char c = '\u9382';
System.out.println(c);  // Output: 鎂

JSON:

{"text": "\u9382"}  // Value: 鎂

Python:

char = '\u9382'
print(char)  # Output: 鎂

Perl:

my $char = "\x{9382}";
print $char;  # Output: 鎂

PHP:

$char = "\x{9382}";
echo $char;  // Output: 鎂

Ruby:

char = "\u{9382}"
puts char  # Output: 鎂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009382";  /* Display: 鎂 */
}

HTML Decimal:

<p>HTML decimal: &#37762;</p>  <!-- Display: 鎂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9382;</p>  <!-- Display: 鎂 -->

URL Encoding:

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

Encodings

MD5:

b99641d2b214c270e356ebf0418269ce

SHA1:

487f6257214212de4a141e4d48de864ac1943e63

Base64:

6Y6C