Unicode Finder

"駴" U+99F4(CJK UNIFIED IDEOGRAPH-99F4)

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

Programming

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

Web

CSS
\0099F4
HtmlDecimal
駴
HtmlHexadecimal
駴
Url
%E9%A7%B4

Code

MD5
2d95661fd8bb3d822c4c2711e8457e29
Sha1
30034297c319281b2ec2ecf416eaa6ee3e81b011
Base64
6ae0

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99F4';
console.log(char);  // Output: 駴

Java:

char c = '\u99F4';
System.out.println(c);  // Output: 駴

JSON:

{"text": "\u99F4"}  // Value: 駴

Python:

char = '\u99F4'
print(char)  # Output: 駴

Perl:

my $char = "\x{99F4}";
print $char;  # Output: 駴

PHP:

$char = "\x{99F4}";
echo $char;  // Output: 駴

Ruby:

char = "\u{99F4}"
puts char  # Output: 駴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39412;</p>  <!-- Display: 駴 -->

HTML Hexadecimal:

<p>HTML hex: &#x99F4;</p>  <!-- Display: 駴 -->

URL Encoding:

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

Encodings

MD5:

2d95661fd8bb3d822c4c2711e8457e29

SHA1:

30034297c319281b2ec2ecf416eaa6ee3e81b011

Base64:

6ae0