Unicode Finder

"駵" U+99F5(CJK UNIFIED IDEOGRAPH-99F5)

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

Programming

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

Web

CSS
\0099F5
HtmlDecimal
駵
HtmlHexadecimal
駵
Url
%E9%A7%B5

Code

MD5
62fc9f4951b10954cfc7d1d3d60b5f31
Sha1
f0a8c29e038ead9ea623db92fd45ccb0934dc425
Base64
6ae1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99F5';
console.log(char);  // Output: 駵

Java:

char c = '\u99F5';
System.out.println(c);  // Output: 駵

JSON:

{"text": "\u99F5"}  // Value: 駵

Python:

char = '\u99F5'
print(char)  # Output: 駵

Perl:

my $char = "\x{99F5}";
print $char;  # Output: 駵

PHP:

$char = "\x{99F5}";
echo $char;  // Output: 駵

Ruby:

char = "\u{99F5}"
puts char  # Output: 駵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39413;</p>  <!-- Display: 駵 -->

HTML Hexadecimal:

<p>HTML hex: &#x99F5;</p>  <!-- Display: 駵 -->

URL Encoding:

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

Encodings

MD5:

62fc9f4951b10954cfc7d1d3d60b5f31

SHA1:

f0a8c29e038ead9ea623db92fd45ccb0934dc425

Base64:

6ae1