Unicode Finder

"馸" U+99B8(CJK UNIFIED IDEOGRAPH-99B8)

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

Programming

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

Web

CSS
\0099B8
HtmlDecimal
馸
HtmlHexadecimal
馸
Url
%E9%A6%B8

Code

MD5
bdaca9d7f81056fb6ae12a4970c32670
Sha1
7878911a706ca40aaabd68490141735a3dfb04cc
Base64
6aa4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u99B8';
console.log(char);  // Output: 馸

Java:

char c = '\u99B8';
System.out.println(c);  // Output: 馸

JSON:

{"text": "\u99B8"}  // Value: 馸

Python:

char = '\u99B8'
print(char)  # Output: 馸

Perl:

my $char = "\x{99B8}";
print $char;  # Output: 馸

PHP:

$char = "\x{99B8}";
echo $char;  // Output: 馸

Ruby:

char = "\u{99B8}"
puts char  # Output: 馸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39352;</p>  <!-- Display: 馸 -->

HTML Hexadecimal:

<p>HTML hex: &#x99B8;</p>  <!-- Display: 馸 -->

URL Encoding:

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

Encodings

MD5:

bdaca9d7f81056fb6ae12a4970c32670

SHA1:

7878911a706ca40aaabd68490141735a3dfb04cc

Base64:

6aa4