Unicode Finder

"饁" U+9941(CJK UNIFIED IDEOGRAPH-9941)

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

Programming

C
\u9941
JavaScript
\u9941
Java
\u9941
Json
\u9941
Python
\u9941
Perl
\x{9941}
PHP
\x{9941}
Ruby
\u{9941}
Rust
\u{9941}
Go
\u9941

Web

CSS
\009941
HtmlDecimal
饁
HtmlHexadecimal
饁
Url
%E9%A5%81

Code

MD5
32c558f94f88b6d12cdc5850d68bd57b
Sha1
b951ab35cca59e66ebb9a960370e23803afba4a5
Base64
6aWB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9941';
console.log(char);  // Output: 饁

Java:

char c = '\u9941';
System.out.println(c);  // Output: 饁

JSON:

{"text": "\u9941"}  // Value: 饁

Python:

char = '\u9941'
print(char)  # Output: 饁

Perl:

my $char = "\x{9941}";
print $char;  # Output: 饁

PHP:

$char = "\x{9941}";
echo $char;  // Output: 饁

Ruby:

char = "\u{9941}"
puts char  # Output: 饁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009941";  /* Display: 饁 */
}

HTML Decimal:

<p>HTML decimal: &#39233;</p>  <!-- Display: 饁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9941;</p>  <!-- Display: 饁 -->

URL Encoding:

// 饁 URL encoding
https://unicodefinder.com/search.php?query=%E9%A5%81

Encodings

MD5:

32c558f94f88b6d12cdc5850d68bd57b

SHA1:

b951ab35cca59e66ebb9a960370e23803afba4a5

Base64:

6aWB