Unicode Finder

"餩" U+9929(CJK UNIFIED IDEOGRAPH-9929)

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

Programming

C
\u9929
JavaScript
\u9929
Java
\u9929
Json
\u9929
Python
\u9929
Perl
\x{9929}
PHP
\x{9929}
Ruby
\u{9929}
Rust
\u{9929}
Go
\u9929

Web

CSS
\009929
HtmlDecimal
餩
HtmlHexadecimal
餩
Url
%E9%A4%A9

Code

MD5
7056acabeceb85867d56d8fd34fc0e4c
Sha1
4960722c7de21f85fac5c0d9b2e63ea68179e62b
Base64
6aSp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9929';
console.log(char);  // Output: 餩

Java:

char c = '\u9929';
System.out.println(c);  // Output: 餩

JSON:

{"text": "\u9929"}  // Value: 餩

Python:

char = '\u9929'
print(char)  # Output: 餩

Perl:

my $char = "\x{9929}";
print $char;  # Output: 餩

PHP:

$char = "\x{9929}";
echo $char;  // Output: 餩

Ruby:

char = "\u{9929}"
puts char  # Output: 餩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009929";  /* Display: 餩 */
}

HTML Decimal:

<p>HTML decimal: &#39209;</p>  <!-- Display: 餩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9929;</p>  <!-- Display: 餩 -->

URL Encoding:

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

Encodings

MD5:

7056acabeceb85867d56d8fd34fc0e4c

SHA1:

4960722c7de21f85fac5c0d9b2e63ea68179e62b

Base64:

6aSp