Unicode Finder

"餄" U+9904(CJK UNIFIED IDEOGRAPH-9904)

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

Programming

C
\u9904
JavaScript
\u9904
Java
\u9904
Json
\u9904
Python
\u9904
Perl
\x{9904}
PHP
\x{9904}
Ruby
\u{9904}
Rust
\u{9904}
Go
\u9904

Web

CSS
\009904
HtmlDecimal
餄
HtmlHexadecimal
餄
Url
%E9%A4%84

Code

MD5
d7c237de4be727871ad647d231d5bea0
Sha1
0bd67faf0b5305c69b613e0aede8539a65697187
Base64
6aSE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9904';
console.log(char);  // Output: 餄

Java:

char c = '\u9904';
System.out.println(c);  // Output: 餄

JSON:

{"text": "\u9904"}  // Value: 餄

Python:

char = '\u9904'
print(char)  # Output: 餄

Perl:

my $char = "\x{9904}";
print $char;  # Output: 餄

PHP:

$char = "\x{9904}";
echo $char;  // Output: 餄

Ruby:

char = "\u{9904}"
puts char  # Output: 餄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009904";  /* Display: 餄 */
}

HTML Decimal:

<p>HTML decimal: &#39172;</p>  <!-- Display: 餄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9904;</p>  <!-- Display: 餄 -->

URL Encoding:

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

Encodings

MD5:

d7c237de4be727871ad647d231d5bea0

SHA1:

0bd67faf0b5305c69b613e0aede8539a65697187

Base64:

6aSE