Unicode Finder

"铈" U+94C8(CJK UNIFIED IDEOGRAPH-94C8)

U+94C8
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-94C8

Programming

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

Web

CSS
\0094C8
HtmlDecimal
铈
HtmlHexadecimal
铈
Url
%E9%93%88

Code

MD5
2843a211b0c982c74ac1174b4f714fc2
Sha1
8797b6d73279b455095c7b7dd2a61d8d38e20df9
Base64
6ZOI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u94C8';
console.log(char);  // Output: 铈

Java:

char c = '\u94C8';
System.out.println(c);  // Output: 铈

JSON:

{"text": "\u94C8"}  // Value: 铈

Python:

char = '\u94C8'
print(char)  # Output: 铈

Perl:

my $char = "\x{94C8}";
print $char;  # Output: 铈

PHP:

$char = "\x{94C8}";
echo $char;  // Output: 铈

Ruby:

char = "\u{94C8}"
puts char  # Output: 铈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38088;</p>  <!-- Display: 铈 -->

HTML Hexadecimal:

<p>HTML hex: &#x94C8;</p>  <!-- Display: 铈 -->

URL Encoding:

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

Encodings

MD5:

2843a211b0c982c74ac1174b4f714fc2

SHA1:

8797b6d73279b455095c7b7dd2a61d8d38e20df9

Base64:

6ZOI