Unicode Finder

"噁" U+5641(CJK UNIFIED IDEOGRAPH-5641)

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

Programming

C
\u5641
JavaScript
\u5641
Java
\u5641
Json
\u5641
Python
\u5641
Perl
\x{5641}
PHP
\x{5641}
Ruby
\u{5641}
Rust
\u{5641}
Go
\u5641

Web

CSS
\005641
HtmlDecimal
噁
HtmlHexadecimal
噁
Url
%E5%99%81

Code

MD5
58c3a5e280c1307378d47e08e2763e71
Sha1
17d26a4b595334b8a2989e0a479b2bc470ebc3af
Base64
5ZmB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5641';
console.log(char);  // Output: 噁

Java:

char c = '\u5641';
System.out.println(c);  // Output: 噁

JSON:

{"text": "\u5641"}  // Value: 噁

Python:

char = '\u5641'
print(char)  # Output: 噁

Perl:

my $char = "\x{5641}";
print $char;  # Output: 噁

PHP:

$char = "\x{5641}";
echo $char;  // Output: 噁

Ruby:

char = "\u{5641}"
puts char  # Output: 噁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005641";  /* Display: 噁 */
}

HTML Decimal:

<p>HTML decimal: &#22081;</p>  <!-- Display: 噁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5641;</p>  <!-- Display: 噁 -->

URL Encoding:

// 噁 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%81

Encodings

MD5:

58c3a5e280c1307378d47e08e2763e71

SHA1:

17d26a4b595334b8a2989e0a479b2bc470ebc3af

Base64:

5ZmB