Unicode Finder

"駔" U+99D4(CJK UNIFIED IDEOGRAPH-99D4)

U+99D4
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-99D4

Programming

C
\u99D4
JavaScript
\u99D4
Java
\u99D4
Json
\u99D4
Python
\u99D4
Perl
\x{99D4}
PHP
\x{99D4}
Ruby
\u{99D4}
Rust
\u{99D4}
Go
\u99D4

Web

CSS
\0099D4
HtmlDecimal
駔
HtmlHexadecimal
駔
Url
%E9%A7%94

Code

MD5
e17c052028ca9675ce982ef846d5cf78
Sha1
56fee56970e77bb29d351900ced4f14c809447f3
Base64
6aeU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99D4';
console.log(char);  // Output: 駔

Java:

char c = '\u99D4';
System.out.println(c);  // Output: 駔

JSON:

{"text": "\u99D4"}  // Value: 駔

Python:

char = '\u99D4'
print(char)  # Output: 駔

Perl:

my $char = "\x{99D4}";
print $char;  # Output: 駔

PHP:

$char = "\x{99D4}";
echo $char;  // Output: 駔

Ruby:

char = "\u{99D4}"
puts char  # Output: 駔

Rust:

let c = '\u{99D4}';
println!("{}", c);  // Output: 駔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0099D4";  /* Display: 駔 */
}

HTML Decimal:

<p>HTML decimal: &#39380;</p>  <!-- Display: 駔 -->

HTML Hexadecimal:

<p>HTML hex: &#x99D4;</p>  <!-- Display: 駔 -->

URL Encoding:

// 駔 URL encoding
https://unicodefinder.com/search.php?query=%E9%A7%94

Encodings

MD5:

e17c052028ca9675ce982ef846d5cf78

SHA1:

56fee56970e77bb29d351900ced4f14c809447f3

Base64:

6aeU