Unicode Finder

"镎" U+954E(CJK UNIFIED IDEOGRAPH-954E)

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

Programming

C
\u954E
JavaScript
\u954E
Java
\u954E
Json
\u954E
Python
\u954E
Perl
\x{954E}
PHP
\x{954E}
Ruby
\u{954E}
Rust
\u{954E}
Go
\u954E

Web

CSS
\00954E
HtmlDecimal
镎
HtmlHexadecimal
镎
Url
%E9%95%8E

Code

MD5
9dbae34cd8d665ae3ddc1c2e2bddd91c
Sha1
5fa895e31a91e7190c8c5ed8e1dcfe5968bcdba2
Base64
6ZWO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u954E';
console.log(char);  // Output: 镎

Java:

char c = '\u954E';
System.out.println(c);  // Output: 镎

JSON:

{"text": "\u954E"}  // Value: 镎

Python:

char = '\u954E'
print(char)  # Output: 镎

Perl:

my $char = "\x{954E}";
print $char;  # Output: 镎

PHP:

$char = "\x{954E}";
echo $char;  // Output: 镎

Ruby:

char = "\u{954E}"
puts char  # Output: 镎

Rust:

let c = '\u{954E}';
println!("{}", c);  // Output: 镎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00954E";  /* Display: 镎 */
}

HTML Decimal:

<p>HTML decimal: &#38222;</p>  <!-- Display: 镎 -->

HTML Hexadecimal:

<p>HTML hex: &#x954E;</p>  <!-- Display: 镎 -->

URL Encoding:

// 镎 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%8E

Encodings

MD5:

9dbae34cd8d665ae3ddc1c2e2bddd91c

SHA1:

5fa895e31a91e7190c8c5ed8e1dcfe5968bcdba2

Base64:

6ZWO