Unicode Finder

"铨" U+94E8(CJK UNIFIED IDEOGRAPH-94E8)

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

Programming

C
\u94E8
JavaScript
\u94E8
Java
\u94E8
Json
\u94E8
Python
\u94E8
Perl
\x{94E8}
PHP
\x{94E8}
Ruby
\u{94E8}
Rust
\u{94E8}
Go
\u94E8

Web

CSS
\0094E8
HtmlDecimal
铨
HtmlHexadecimal
铨
Url
%E9%93%A8

Code

MD5
008cf3ca62e8a7a2738a57f02434b2c0
Sha1
e2f0edfb2da52f94dee52ee6acebad4ea068ac32
Base64
6ZOo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94E8';
console.log(char);  // Output: 铨

Java:

char c = '\u94E8';
System.out.println(c);  // Output: 铨

JSON:

{"text": "\u94E8"}  // Value: 铨

Python:

char = '\u94E8'
print(char)  # Output: 铨

Perl:

my $char = "\x{94E8}";
print $char;  # Output: 铨

PHP:

$char = "\x{94E8}";
echo $char;  // Output: 铨

Ruby:

char = "\u{94E8}"
puts char  # Output: 铨

Rust:

let c = '\u{94E8}';
println!("{}", c);  // Output: 铨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094E8";  /* Display: 铨 */
}

HTML Decimal:

<p>HTML decimal: &#38120;</p>  <!-- Display: 铨 -->

HTML Hexadecimal:

<p>HTML hex: &#x94E8;</p>  <!-- Display: 铨 -->

URL Encoding:

// 铨 URL encoding
https://unicodefinder.com/search.php?query=%E9%93%A8

Encodings

MD5:

008cf3ca62e8a7a2738a57f02434b2c0

SHA1:

e2f0edfb2da52f94dee52ee6acebad4ea068ac32

Base64:

6ZOo