Unicode Finder

"鍃" U+9343(CJK UNIFIED IDEOGRAPH-9343)

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

Programming

C
\u9343
JavaScript
\u9343
Java
\u9343
Json
\u9343
Python
\u9343
Perl
\x{9343}
PHP
\x{9343}
Ruby
\u{9343}
Rust
\u{9343}
Go
\u9343

Web

CSS
\009343
HtmlDecimal
鍃
HtmlHexadecimal
鍃
Url
%E9%8D%83

Code

MD5
3eff76481e5b4f6c7369812486ff901f
Sha1
7126d8897f79ffd6f14ecffe7d38373de25cd8d6
Base64
6Y2D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9343';
console.log(char);  // Output: 鍃

Java:

char c = '\u9343';
System.out.println(c);  // Output: 鍃

JSON:

{"text": "\u9343"}  // Value: 鍃

Python:

char = '\u9343'
print(char)  # Output: 鍃

Perl:

my $char = "\x{9343}";
print $char;  # Output: 鍃

PHP:

$char = "\x{9343}";
echo $char;  // Output: 鍃

Ruby:

char = "\u{9343}"
puts char  # Output: 鍃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009343";  /* Display: 鍃 */
}

HTML Decimal:

<p>HTML decimal: &#37699;</p>  <!-- Display: 鍃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9343;</p>  <!-- Display: 鍃 -->

URL Encoding:

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

Encodings

MD5:

3eff76481e5b4f6c7369812486ff901f

SHA1:

7126d8897f79ffd6f14ecffe7d38373de25cd8d6

Base64:

6Y2D