Unicode Finder

"駤" U+99E4(CJK UNIFIED IDEOGRAPH-99E4)

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

Programming

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

Web

CSS
\0099E4
HtmlDecimal
駤
HtmlHexadecimal
駤
Url
%E9%A7%A4

Code

MD5
89aceef4ced7b297304e86806684d04b
Sha1
169943057815f3897e7b7c9d83114bfcef09b3eb
Base64
6aek

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99E4';
console.log(char);  // Output: 駤

Java:

char c = '\u99E4';
System.out.println(c);  // Output: 駤

JSON:

{"text": "\u99E4"}  // Value: 駤

Python:

char = '\u99E4'
print(char)  # Output: 駤

Perl:

my $char = "\x{99E4}";
print $char;  # Output: 駤

PHP:

$char = "\x{99E4}";
echo $char;  // Output: 駤

Ruby:

char = "\u{99E4}"
puts char  # Output: 駤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39396;</p>  <!-- Display: 駤 -->

HTML Hexadecimal:

<p>HTML hex: &#x99E4;</p>  <!-- Display: 駤 -->

URL Encoding:

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

Encodings

MD5:

89aceef4ced7b297304e86806684d04b

SHA1:

169943057815f3897e7b7c9d83114bfcef09b3eb

Base64:

6aek