Unicode Finder

"馔" U+9994(CJK UNIFIED IDEOGRAPH-9994)

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

Programming

C
\u9994
JavaScript
\u9994
Java
\u9994
Json
\u9994
Python
\u9994
Perl
\x{9994}
PHP
\x{9994}
Ruby
\u{9994}
Rust
\u{9994}
Go
\u9994

Web

CSS
\009994
HtmlDecimal
馔
HtmlHexadecimal
馔
Url
%E9%A6%94

Code

MD5
dead0fc7623c4c8b504207c9465b8a42
Sha1
dfc973223c4632d6ec12ee65e3145bebc5bfecf1
Base64
6aaU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9994';
console.log(char);  // Output: 馔

Java:

char c = '\u9994';
System.out.println(c);  // Output: 馔

JSON:

{"text": "\u9994"}  // Value: 馔

Python:

char = '\u9994'
print(char)  # Output: 馔

Perl:

my $char = "\x{9994}";
print $char;  # Output: 馔

PHP:

$char = "\x{9994}";
echo $char;  // Output: 馔

Ruby:

char = "\u{9994}"
puts char  # Output: 馔

Rust:

let c = '\u{9994}';
println!("{}", c);  // Output: 馔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009994";  /* Display: 馔 */
}

HTML Decimal:

<p>HTML decimal: &#39316;</p>  <!-- Display: 馔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9994;</p>  <!-- Display: 馔 -->

URL Encoding:

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

Encodings

MD5:

dead0fc7623c4c8b504207c9465b8a42

SHA1:

dfc973223c4632d6ec12ee65e3145bebc5bfecf1

Base64:

6aaU