Unicode Finder

"噘" U+5658(CJK UNIFIED IDEOGRAPH-5658)

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

Programming

C
\u5658
JavaScript
\u5658
Java
\u5658
Json
\u5658
Python
\u5658
Perl
\x{5658}
PHP
\x{5658}
Ruby
\u{5658}
Rust
\u{5658}
Go
\u5658

Web

CSS
\005658
HtmlDecimal
噘
HtmlHexadecimal
噘
Url
%E5%99%98

Code

MD5
77eeb3b1e13b77c47fd2707739ab677f
Sha1
17585e506852c8b32b2b0a66db06d9d50fac936b
Base64
5ZmY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5658';
console.log(char);  // Output: 噘

Java:

char c = '\u5658';
System.out.println(c);  // Output: 噘

JSON:

{"text": "\u5658"}  // Value: 噘

Python:

char = '\u5658'
print(char)  # Output: 噘

Perl:

my $char = "\x{5658}";
print $char;  # Output: 噘

PHP:

$char = "\x{5658}";
echo $char;  // Output: 噘

Ruby:

char = "\u{5658}"
puts char  # Output: 噘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005658";  /* Display: 噘 */
}

HTML Decimal:

<p>HTML decimal: &#22104;</p>  <!-- Display: 噘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5658;</p>  <!-- Display: 噘 -->

URL Encoding:

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

Encodings

MD5:

77eeb3b1e13b77c47fd2707739ab677f

SHA1:

17585e506852c8b32b2b0a66db06d9d50fac936b

Base64:

5ZmY