Unicode Finder

"噖" U+5656(CJK UNIFIED IDEOGRAPH-5656)

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

Programming

C
\u5656
JavaScript
\u5656
Java
\u5656
Json
\u5656
Python
\u5656
Perl
\x{5656}
PHP
\x{5656}
Ruby
\u{5656}
Rust
\u{5656}
Go
\u5656

Web

CSS
\005656
HtmlDecimal
噖
HtmlHexadecimal
噖
Url
%E5%99%96

Code

MD5
a16f0c5e1baf559ec441f1fcca18af16
Sha1
dd7243ec5d9307e652dbbef7e5ae3acc2060c229
Base64
5ZmW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5656';
console.log(char);  // Output: 噖

Java:

char c = '\u5656';
System.out.println(c);  // Output: 噖

JSON:

{"text": "\u5656"}  // Value: 噖

Python:

char = '\u5656'
print(char)  # Output: 噖

Perl:

my $char = "\x{5656}";
print $char;  # Output: 噖

PHP:

$char = "\x{5656}";
echo $char;  // Output: 噖

Ruby:

char = "\u{5656}"
puts char  # Output: 噖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005656";  /* Display: 噖 */
}

HTML Decimal:

<p>HTML decimal: &#22102;</p>  <!-- Display: 噖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5656;</p>  <!-- Display: 噖 -->

URL Encoding:

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

Encodings

MD5:

a16f0c5e1baf559ec441f1fcca18af16

SHA1:

dd7243ec5d9307e652dbbef7e5ae3acc2060c229

Base64:

5ZmW