Unicode Finder

"鍁" U+9341(CJK UNIFIED IDEOGRAPH-9341)

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

Programming

C
\u9341
JavaScript
\u9341
Java
\u9341
Json
\u9341
Python
\u9341
Perl
\x{9341}
PHP
\x{9341}
Ruby
\u{9341}
Rust
\u{9341}
Go
\u9341

Web

CSS
\009341
HtmlDecimal
鍁
HtmlHexadecimal
鍁
Url
%E9%8D%81

Code

MD5
d19d146afc92c6c86a0c41a05ad8364b
Sha1
1143031c44b1fccd42621e7281e73a4ab087c875
Base64
6Y2B

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9341';
console.log(char);  // Output: 鍁

Java:

char c = '\u9341';
System.out.println(c);  // Output: 鍁

JSON:

{"text": "\u9341"}  // Value: 鍁

Python:

char = '\u9341'
print(char)  # Output: 鍁

Perl:

my $char = "\x{9341}";
print $char;  # Output: 鍁

PHP:

$char = "\x{9341}";
echo $char;  // Output: 鍁

Ruby:

char = "\u{9341}"
puts char  # Output: 鍁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009341";  /* Display: 鍁 */
}

HTML Decimal:

<p>HTML decimal: &#37697;</p>  <!-- Display: 鍁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9341;</p>  <!-- Display: 鍁 -->

URL Encoding:

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

Encodings

MD5:

d19d146afc92c6c86a0c41a05ad8364b

SHA1:

1143031c44b1fccd42621e7281e73a4ab087c875

Base64:

6Y2B