Unicode Finder

"餙" U+9919(CJK UNIFIED IDEOGRAPH-9919)

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

Programming

C
\u9919
JavaScript
\u9919
Java
\u9919
Json
\u9919
Python
\u9919
Perl
\x{9919}
PHP
\x{9919}
Ruby
\u{9919}
Rust
\u{9919}
Go
\u9919

Web

CSS
\009919
HtmlDecimal
餙
HtmlHexadecimal
餙
Url
%E9%A4%99

Code

MD5
8aeb162969d34cf9230bdad96e5ee91a
Sha1
013a00fb760bfdf92354bad5b9976482d320514d
Base64
6aSZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9919';
console.log(char);  // Output: 餙

Java:

char c = '\u9919';
System.out.println(c);  // Output: 餙

JSON:

{"text": "\u9919"}  // Value: 餙

Python:

char = '\u9919'
print(char)  # Output: 餙

Perl:

my $char = "\x{9919}";
print $char;  # Output: 餙

PHP:

$char = "\x{9919}";
echo $char;  // Output: 餙

Ruby:

char = "\u{9919}"
puts char  # Output: 餙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009919";  /* Display: 餙 */
}

HTML Decimal:

<p>HTML decimal: &#39193;</p>  <!-- Display: 餙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9919;</p>  <!-- Display: 餙 -->

URL Encoding:

// 餙 URL encoding
https://unicodefinder.com/search.php?query=%E9%A4%99

Encodings

MD5:

8aeb162969d34cf9230bdad96e5ee91a

SHA1:

013a00fb760bfdf92354bad5b9976482d320514d

Base64:

6aSZ