Unicode Finder

"駕" U+99D5(CJK UNIFIED IDEOGRAPH-99D5)

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

Programming

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

Web

CSS
\0099D5
HtmlDecimal
駕
HtmlHexadecimal
駕
Url
%E9%A7%95

Code

MD5
8a189840c57dfbc62d609dfc30b4d794
Sha1
c9bf3a954c6cb8109f87b028c560878e3c43d38e
Base64
6aeV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99D5';
console.log(char);  // Output: 駕

Java:

char c = '\u99D5';
System.out.println(c);  // Output: 駕

JSON:

{"text": "\u99D5"}  // Value: 駕

Python:

char = '\u99D5'
print(char)  # Output: 駕

Perl:

my $char = "\x{99D5}";
print $char;  # Output: 駕

PHP:

$char = "\x{99D5}";
echo $char;  // Output: 駕

Ruby:

char = "\u{99D5}"
puts char  # Output: 駕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39381;</p>  <!-- Display: 駕 -->

HTML Hexadecimal:

<p>HTML hex: &#x99D5;</p>  <!-- Display: 駕 -->

URL Encoding:

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

Encodings

MD5:

8a189840c57dfbc62d609dfc30b4d794

SHA1:

c9bf3a954c6cb8109f87b028c560878e3c43d38e

Base64:

6aeV