Unicode Finder

"鐜" U+941C(CJK UNIFIED IDEOGRAPH-941C)

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

Programming

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

Web

CSS
\00941C
HtmlDecimal
鐜
HtmlHexadecimal
鐜
Url
%E9%90%9C

Code

MD5
d10f0263a6738d2c32314ace851ad081
Sha1
070f1a8dfe92db4c29494523719fef0c7f0ca986
Base64
6ZCc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u941C';
console.log(char);  // Output: 鐜

Java:

char c = '\u941C';
System.out.println(c);  // Output: 鐜

JSON:

{"text": "\u941C"}  // Value: 鐜

Python:

char = '\u941C'
print(char)  # Output: 鐜

Perl:

my $char = "\x{941C}";
print $char;  # Output: 鐜

PHP:

$char = "\x{941C}";
echo $char;  // Output: 鐜

Ruby:

char = "\u{941C}"
puts char  # Output: 鐜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37916;</p>  <!-- Display: 鐜 -->

HTML Hexadecimal:

<p>HTML hex: &#x941C;</p>  <!-- Display: 鐜 -->

URL Encoding:

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

Encodings

MD5:

d10f0263a6738d2c32314ace851ad081

SHA1:

070f1a8dfe92db4c29494523719fef0c7f0ca986

Base64:

6ZCc