Unicode Finder

"鍂" U+9342(CJK UNIFIED IDEOGRAPH-9342)

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

Programming

C
\u9342
JavaScript
\u9342
Java
\u9342
Json
\u9342
Python
\u9342
Perl
\x{9342}
PHP
\x{9342}
Ruby
\u{9342}
Rust
\u{9342}
Go
\u9342

Web

CSS
\009342
HtmlDecimal
鍂
HtmlHexadecimal
鍂
Url
%E9%8D%82

Code

MD5
9eff74cd9b16eaa1f151ce937f6742ca
Sha1
d8f86dda40f6c8f1441d62044af01fcc26b59049
Base64
6Y2C

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9342';
console.log(char);  // Output: 鍂

Java:

char c = '\u9342';
System.out.println(c);  // Output: 鍂

JSON:

{"text": "\u9342"}  // Value: 鍂

Python:

char = '\u9342'
print(char)  # Output: 鍂

Perl:

my $char = "\x{9342}";
print $char;  # Output: 鍂

PHP:

$char = "\x{9342}";
echo $char;  // Output: 鍂

Ruby:

char = "\u{9342}"
puts char  # Output: 鍂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009342";  /* Display: 鍂 */
}

HTML Decimal:

<p>HTML decimal: &#37698;</p>  <!-- Display: 鍂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9342;</p>  <!-- Display: 鍂 -->

URL Encoding:

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

Encodings

MD5:

9eff74cd9b16eaa1f151ce937f6742ca

SHA1:

d8f86dda40f6c8f1441d62044af01fcc26b59049

Base64:

6Y2C