Unicode Finder

"噈" U+5648(CJK UNIFIED IDEOGRAPH-5648)

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

Programming

C
\u5648
JavaScript
\u5648
Java
\u5648
Json
\u5648
Python
\u5648
Perl
\x{5648}
PHP
\x{5648}
Ruby
\u{5648}
Rust
\u{5648}
Go
\u5648

Web

CSS
\005648
HtmlDecimal
噈
HtmlHexadecimal
噈
Url
%E5%99%88

Code

MD5
32cc1a77c310bd9bdaaf3c15cd551b65
Sha1
4b6f820d376153a292e137c90c00ace620c09efb
Base64
5ZmI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5648';
console.log(char);  // Output: 噈

Java:

char c = '\u5648';
System.out.println(c);  // Output: 噈

JSON:

{"text": "\u5648"}  // Value: 噈

Python:

char = '\u5648'
print(char)  # Output: 噈

Perl:

my $char = "\x{5648}";
print $char;  # Output: 噈

PHP:

$char = "\x{5648}";
echo $char;  // Output: 噈

Ruby:

char = "\u{5648}"
puts char  # Output: 噈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005648";  /* Display: 噈 */
}

HTML Decimal:

<p>HTML decimal: &#22088;</p>  <!-- Display: 噈 -->

HTML Hexadecimal:

<p>HTML hex: &#x5648;</p>  <!-- Display: 噈 -->

URL Encoding:

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

Encodings

MD5:

32cc1a77c310bd9bdaaf3c15cd551b65

SHA1:

4b6f820d376153a292e137c90c00ace620c09efb

Base64:

5ZmI