Unicode Finder

"噆" U+5646(CJK UNIFIED IDEOGRAPH-5646)

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

Programming

C
\u5646
JavaScript
\u5646
Java
\u5646
Json
\u5646
Python
\u5646
Perl
\x{5646}
PHP
\x{5646}
Ruby
\u{5646}
Rust
\u{5646}
Go
\u5646

Web

CSS
\005646
HtmlDecimal
噆
HtmlHexadecimal
噆
Url
%E5%99%86

Code

MD5
515d09e44f58e3c1b2e495d1c9f03279
Sha1
b4ca35f350bf5f1d9a20972cfb5cdb944270eb07
Base64
5ZmG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5646';
console.log(char);  // Output: 噆

Java:

char c = '\u5646';
System.out.println(c);  // Output: 噆

JSON:

{"text": "\u5646"}  // Value: 噆

Python:

char = '\u5646'
print(char)  # Output: 噆

Perl:

my $char = "\x{5646}";
print $char;  # Output: 噆

PHP:

$char = "\x{5646}";
echo $char;  // Output: 噆

Ruby:

char = "\u{5646}"
puts char  # Output: 噆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005646";  /* Display: 噆 */
}

HTML Decimal:

<p>HTML decimal: &#22086;</p>  <!-- Display: 噆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5646;</p>  <!-- Display: 噆 -->

URL Encoding:

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

Encodings

MD5:

515d09e44f58e3c1b2e495d1c9f03279

SHA1:

b4ca35f350bf5f1d9a20972cfb5cdb944270eb07

Base64:

5ZmG