Unicode Finder

"馯" U+99AF(CJK UNIFIED IDEOGRAPH-99AF)

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

Programming

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

Web

CSS
\0099AF
HtmlDecimal
馯
HtmlHexadecimal
馯
Url
%E9%A6%AF

Code

MD5
6a00e2b85102dcbe98583d3e8434c397
Sha1
19d861aed58d52b542ac241545f70b5f44405e4f
Base64
6aav

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99AF';
console.log(char);  // Output: 馯

Java:

char c = '\u99AF';
System.out.println(c);  // Output: 馯

JSON:

{"text": "\u99AF"}  // Value: 馯

Python:

char = '\u99AF'
print(char)  # Output: 馯

Perl:

my $char = "\x{99AF}";
print $char;  # Output: 馯

PHP:

$char = "\x{99AF}";
echo $char;  // Output: 馯

Ruby:

char = "\u{99AF}"
puts char  # Output: 馯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39343;</p>  <!-- Display: 馯 -->

HTML Hexadecimal:

<p>HTML hex: &#x99AF;</p>  <!-- Display: 馯 -->

URL Encoding:

// 馯 URL encoding
https://unicodefinder.com/search.php?query=%E9%A6%AF

Encodings

MD5:

6a00e2b85102dcbe98583d3e8434c397

SHA1:

19d861aed58d52b542ac241545f70b5f44405e4f

Base64:

6aav