Unicode Finder

"駹" U+99F9(CJK UNIFIED IDEOGRAPH-99F9)

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

Programming

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

Web

CSS
\0099F9
HtmlDecimal
駹
HtmlHexadecimal
駹
Url
%E9%A7%B9

Code

MD5
d5ac93bcee07a0aa0f56fe3a03e92e89
Sha1
187d611cf44463ce95b1672e7c32eeadd29bfbae
Base64
6ae5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99F9';
console.log(char);  // Output: 駹

Java:

char c = '\u99F9';
System.out.println(c);  // Output: 駹

JSON:

{"text": "\u99F9"}  // Value: 駹

Python:

char = '\u99F9'
print(char)  # Output: 駹

Perl:

my $char = "\x{99F9}";
print $char;  # Output: 駹

PHP:

$char = "\x{99F9}";
echo $char;  // Output: 駹

Ruby:

char = "\u{99F9}"
puts char  # Output: 駹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39417;</p>  <!-- Display: 駹 -->

HTML Hexadecimal:

<p>HTML hex: &#x99F9;</p>  <!-- Display: 駹 -->

URL Encoding:

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

Encodings

MD5:

d5ac93bcee07a0aa0f56fe3a03e92e89

SHA1:

187d611cf44463ce95b1672e7c32eeadd29bfbae

Base64:

6ae5