Unicode Finder

"餗" U+9917(CJK UNIFIED IDEOGRAPH-9917)

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

Programming

C
\u9917
JavaScript
\u9917
Java
\u9917
Json
\u9917
Python
\u9917
Perl
\x{9917}
PHP
\x{9917}
Ruby
\u{9917}
Rust
\u{9917}
Go
\u9917

Web

CSS
\009917
HtmlDecimal
餗
HtmlHexadecimal
餗
Url
%E9%A4%97

Code

MD5
f3caa0fef9f01ddce5a5307c2d5e8e63
Sha1
dfcc588348017b971fe673c562d211a64eb0b809
Base64
6aSX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9917';
console.log(char);  // Output: 餗

Java:

char c = '\u9917';
System.out.println(c);  // Output: 餗

JSON:

{"text": "\u9917"}  // Value: 餗

Python:

char = '\u9917'
print(char)  # Output: 餗

Perl:

my $char = "\x{9917}";
print $char;  # Output: 餗

PHP:

$char = "\x{9917}";
echo $char;  // Output: 餗

Ruby:

char = "\u{9917}"
puts char  # Output: 餗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009917";  /* Display: 餗 */
}

HTML Decimal:

<p>HTML decimal: &#39191;</p>  <!-- Display: 餗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9917;</p>  <!-- Display: 餗 -->

URL Encoding:

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

Encodings

MD5:

f3caa0fef9f01ddce5a5307c2d5e8e63

SHA1:

dfcc588348017b971fe673c562d211a64eb0b809

Base64:

6aSX