Unicode Finder

"铉" U+94C9(CJK UNIFIED IDEOGRAPH-94C9)

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

Programming

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

Web

CSS
\0094C9
HtmlDecimal
铉
HtmlHexadecimal
铉
Url
%E9%93%89

Code

MD5
807c82cc656dfab0500690fc8925d186
Sha1
1f1d08e6ec22918c6d2abb4d84ee13d17c201920
Base64
6ZOJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u94C9';
console.log(char);  // Output: 铉

Java:

char c = '\u94C9';
System.out.println(c);  // Output: 铉

JSON:

{"text": "\u94C9"}  // Value: 铉

Python:

char = '\u94C9'
print(char)  # Output: 铉

Perl:

my $char = "\x{94C9}";
print $char;  # Output: 铉

PHP:

$char = "\x{94C9}";
echo $char;  // Output: 铉

Ruby:

char = "\u{94C9}"
puts char  # Output: 铉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#38089;</p>  <!-- Display: 铉 -->

HTML Hexadecimal:

<p>HTML hex: &#x94C9;</p>  <!-- Display: 铉 -->

URL Encoding:

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

Encodings

MD5:

807c82cc656dfab0500690fc8925d186

SHA1:

1f1d08e6ec22918c6d2abb4d84ee13d17c201920

Base64:

6ZOJ