Unicode Finder

"噓" U+5653(CJK UNIFIED IDEOGRAPH-5653)

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

Programming

C
\u5653
JavaScript
\u5653
Java
\u5653
Json
\u5653
Python
\u5653
Perl
\x{5653}
PHP
\x{5653}
Ruby
\u{5653}
Rust
\u{5653}
Go
\u5653

Web

CSS
\005653
HtmlDecimal
噓
HtmlHexadecimal
噓
Url
%E5%99%93

Code

MD5
4cd08bd7f68269d13fc033dde7f9da3d
Sha1
913ac7c06a96e1523e347033393fdbd218ea8094
Base64
5ZmT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5653';
console.log(char);  // Output: 噓

Java:

char c = '\u5653';
System.out.println(c);  // Output: 噓

JSON:

{"text": "\u5653"}  // Value: 噓

Python:

char = '\u5653'
print(char)  # Output: 噓

Perl:

my $char = "\x{5653}";
print $char;  # Output: 噓

PHP:

$char = "\x{5653}";
echo $char;  // Output: 噓

Ruby:

char = "\u{5653}"
puts char  # Output: 噓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005653";  /* Display: 噓 */
}

HTML Decimal:

<p>HTML decimal: &#22099;</p>  <!-- Display: 噓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5653;</p>  <!-- Display: 噓 -->

URL Encoding:

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

Encodings

MD5:

4cd08bd7f68269d13fc033dde7f9da3d

SHA1:

913ac7c06a96e1523e347033393fdbd218ea8094

Base64:

5ZmT