Unicode Finder

"鐚" U+941A(CJK UNIFIED IDEOGRAPH-941A)

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

Programming

C
\u941A
JavaScript
\u941A
Java
\u941A
Json
\u941A
Python
\u941A
Perl
\x{941A}
PHP
\x{941A}
Ruby
\u{941A}
Rust
\u{941A}
Go
\u941A

Web

CSS
\00941A
HtmlDecimal
鐚
HtmlHexadecimal
鐚
Url
%E9%90%9A

Code

MD5
56818f25721282cb9951feedb5c78c5d
Sha1
4c0ced4c28cd7f90dcb1ff40a5f5ccd93b90529d
Base64
6ZCa

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u941A';
console.log(char);  // Output: 鐚

Java:

char c = '\u941A';
System.out.println(c);  // Output: 鐚

JSON:

{"text": "\u941A"}  // Value: 鐚

Python:

char = '\u941A'
print(char)  # Output: 鐚

Perl:

my $char = "\x{941A}";
print $char;  # Output: 鐚

PHP:

$char = "\x{941A}";
echo $char;  // Output: 鐚

Ruby:

char = "\u{941A}"
puts char  # Output: 鐚

Rust:

let c = '\u{941A}';
println!("{}", c);  // Output: 鐚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00941A";  /* Display: 鐚 */
}

HTML Decimal:

<p>HTML decimal: &#37914;</p>  <!-- Display: 鐚 -->

HTML Hexadecimal:

<p>HTML hex: &#x941A;</p>  <!-- Display: 鐚 -->

URL Encoding:

// 鐚 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%9A

Encodings

MD5:

56818f25721282cb9951feedb5c78c5d

SHA1:

4c0ced4c28cd7f90dcb1ff40a5f5ccd93b90529d

Base64:

6ZCa