Unicode Finder

"噔" U+5654(CJK UNIFIED IDEOGRAPH-5654)

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

Programming

C
\u5654
JavaScript
\u5654
Java
\u5654
Json
\u5654
Python
\u5654
Perl
\x{5654}
PHP
\x{5654}
Ruby
\u{5654}
Rust
\u{5654}
Go
\u5654

Web

CSS
\005654
HtmlDecimal
噔
HtmlHexadecimal
噔
Url
%E5%99%94

Code

MD5
01073969c47b5a75d3968c72ea646d35
Sha1
203d28fc513cdefaa7e4d422cc34ef93fc70df3e
Base64
5ZmU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5654';
console.log(char);  // Output: 噔

Java:

char c = '\u5654';
System.out.println(c);  // Output: 噔

JSON:

{"text": "\u5654"}  // Value: 噔

Python:

char = '\u5654'
print(char)  # Output: 噔

Perl:

my $char = "\x{5654}";
print $char;  # Output: 噔

PHP:

$char = "\x{5654}";
echo $char;  // Output: 噔

Ruby:

char = "\u{5654}"
puts char  # Output: 噔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005654";  /* Display: 噔 */
}

HTML Decimal:

<p>HTML decimal: &#22100;</p>  <!-- Display: 噔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5654;</p>  <!-- Display: 噔 -->

URL Encoding:

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

Encodings

MD5:

01073969c47b5a75d3968c72ea646d35

SHA1:

203d28fc513cdefaa7e4d422cc34ef93fc70df3e

Base64:

5ZmU