Unicode Finder

"噙" U+5659(CJK UNIFIED IDEOGRAPH-5659)

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

Programming

C
\u5659
JavaScript
\u5659
Java
\u5659
Json
\u5659
Python
\u5659
Perl
\x{5659}
PHP
\x{5659}
Ruby
\u{5659}
Rust
\u{5659}
Go
\u5659

Web

CSS
\005659
HtmlDecimal
噙
HtmlHexadecimal
噙
Url
%E5%99%99

Code

MD5
2f1487ad5e7be05275029eb1ce822876
Sha1
879a6f47072ba5888be901b0183f2ada26474b79
Base64
5ZmZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5659';
console.log(char);  // Output: 噙

Java:

char c = '\u5659';
System.out.println(c);  // Output: 噙

JSON:

{"text": "\u5659"}  // Value: 噙

Python:

char = '\u5659'
print(char)  # Output: 噙

Perl:

my $char = "\x{5659}";
print $char;  # Output: 噙

PHP:

$char = "\x{5659}";
echo $char;  // Output: 噙

Ruby:

char = "\u{5659}"
puts char  # Output: 噙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005659";  /* Display: 噙 */
}

HTML Decimal:

<p>HTML decimal: &#22105;</p>  <!-- Display: 噙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5659;</p>  <!-- Display: 噙 -->

URL Encoding:

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

Encodings

MD5:

2f1487ad5e7be05275029eb1ce822876

SHA1:

879a6f47072ba5888be901b0183f2ada26474b79

Base64:

5ZmZ