Unicode Finder

"餳" U+9933(CJK UNIFIED IDEOGRAPH-9933)

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

Programming

C
\u9933
JavaScript
\u9933
Java
\u9933
Json
\u9933
Python
\u9933
Perl
\x{9933}
PHP
\x{9933}
Ruby
\u{9933}
Rust
\u{9933}
Go
\u9933

Web

CSS
\009933
HtmlDecimal
餳
HtmlHexadecimal
餳
Url
%E9%A4%B3

Code

MD5
19cd349aa27eba6b7ff57eb71ca59ca5
Sha1
85db75ac799090ad4e4d53edfd22c6f30ed33463
Base64
6aSz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9933';
console.log(char);  // Output: 餳

Java:

char c = '\u9933';
System.out.println(c);  // Output: 餳

JSON:

{"text": "\u9933"}  // Value: 餳

Python:

char = '\u9933'
print(char)  # Output: 餳

Perl:

my $char = "\x{9933}";
print $char;  # Output: 餳

PHP:

$char = "\x{9933}";
echo $char;  // Output: 餳

Ruby:

char = "\u{9933}"
puts char  # Output: 餳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009933";  /* Display: 餳 */
}

HTML Decimal:

<p>HTML decimal: &#39219;</p>  <!-- Display: 餳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9933;</p>  <!-- Display: 餳 -->

URL Encoding:

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

Encodings

MD5:

19cd349aa27eba6b7ff57eb71ca59ca5

SHA1:

85db75ac799090ad4e4d53edfd22c6f30ed33463

Base64:

6aSz