Unicode Finder

"噭" U+566D(CJK UNIFIED IDEOGRAPH-566D)

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

Programming

C
\u566D
JavaScript
\u566D
Java
\u566D
Json
\u566D
Python
\u566D
Perl
\x{566D}
PHP
\x{566D}
Ruby
\u{566D}
Rust
\u{566D}
Go
\u566D

Web

CSS
\00566D
HtmlDecimal
噭
HtmlHexadecimal
噭
Url
%E5%99%AD

Code

MD5
cf42864a93291e9b304acbe7d103f9eb
Sha1
1bd2370e5ff3b162f49403a55bd857f0756ba1c8
Base64
5Zmt

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u566D';
console.log(char);  // Output: 噭

Java:

char c = '\u566D';
System.out.println(c);  // Output: 噭

JSON:

{"text": "\u566D"}  // Value: 噭

Python:

char = '\u566D'
print(char)  # Output: 噭

Perl:

my $char = "\x{566D}";
print $char;  # Output: 噭

PHP:

$char = "\x{566D}";
echo $char;  // Output: 噭

Ruby:

char = "\u{566D}"
puts char  # Output: 噭

Rust:

let c = '\u{566D}';
println!("{}", c);  // Output: 噭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00566D";  /* Display: 噭 */
}

HTML Decimal:

<p>HTML decimal: &#22125;</p>  <!-- Display: 噭 -->

HTML Hexadecimal:

<p>HTML hex: &#x566D;</p>  <!-- Display: 噭 -->

URL Encoding:

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

Encodings

MD5:

cf42864a93291e9b304acbe7d103f9eb

SHA1:

1bd2370e5ff3b162f49403a55bd857f0756ba1c8

Base64:

5Zmt