Unicode Finder

"餣" U+9923(CJK UNIFIED IDEOGRAPH-9923)

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

Programming

C
\u9923
JavaScript
\u9923
Java
\u9923
Json
\u9923
Python
\u9923
Perl
\x{9923}
PHP
\x{9923}
Ruby
\u{9923}
Rust
\u{9923}
Go
\u9923

Web

CSS
\009923
HtmlDecimal
餣
HtmlHexadecimal
餣
Url
%E9%A4%A3

Code

MD5
90418ff101a71e0803b1e8830f6cd0f8
Sha1
d1a0d446593d7896d83104c7b4340515afd8d442
Base64
6aSj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9923';
console.log(char);  // Output: 餣

Java:

char c = '\u9923';
System.out.println(c);  // Output: 餣

JSON:

{"text": "\u9923"}  // Value: 餣

Python:

char = '\u9923'
print(char)  # Output: 餣

Perl:

my $char = "\x{9923}";
print $char;  # Output: 餣

PHP:

$char = "\x{9923}";
echo $char;  // Output: 餣

Ruby:

char = "\u{9923}"
puts char  # Output: 餣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009923";  /* Display: 餣 */
}

HTML Decimal:

<p>HTML decimal: &#39203;</p>  <!-- Display: 餣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9923;</p>  <!-- Display: 餣 -->

URL Encoding:

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

Encodings

MD5:

90418ff101a71e0803b1e8830f6cd0f8

SHA1:

d1a0d446593d7896d83104c7b4340515afd8d442

Base64:

6aSj