Unicode Finder

"噉" U+5649(CJK UNIFIED IDEOGRAPH-5649)

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

Programming

C
\u5649
JavaScript
\u5649
Java
\u5649
Json
\u5649
Python
\u5649
Perl
\x{5649}
PHP
\x{5649}
Ruby
\u{5649}
Rust
\u{5649}
Go
\u5649

Web

CSS
\005649
HtmlDecimal
噉
HtmlHexadecimal
噉
Url
%E5%99%89

Code

MD5
0c9cd6e291f0302cae9135215c192957
Sha1
e868d652cd8980d532100c838a9d2035a8183180
Base64
5ZmJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5649';
console.log(char);  // Output: 噉

Java:

char c = '\u5649';
System.out.println(c);  // Output: 噉

JSON:

{"text": "\u5649"}  // Value: 噉

Python:

char = '\u5649'
print(char)  # Output: 噉

Perl:

my $char = "\x{5649}";
print $char;  # Output: 噉

PHP:

$char = "\x{5649}";
echo $char;  // Output: 噉

Ruby:

char = "\u{5649}"
puts char  # Output: 噉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005649";  /* Display: 噉 */
}

HTML Decimal:

<p>HTML decimal: &#22089;</p>  <!-- Display: 噉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5649;</p>  <!-- Display: 噉 -->

URL Encoding:

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

Encodings

MD5:

0c9cd6e291f0302cae9135215c192957

SHA1:

e868d652cd8980d532100c838a9d2035a8183180

Base64:

5ZmJ