Unicode Finder

"噂" U+5642(CJK UNIFIED IDEOGRAPH-5642)

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

Programming

C
\u5642
JavaScript
\u5642
Java
\u5642
Json
\u5642
Python
\u5642
Perl
\x{5642}
PHP
\x{5642}
Ruby
\u{5642}
Rust
\u{5642}
Go
\u5642

Web

CSS
\005642
HtmlDecimal
噂
HtmlHexadecimal
噂
Url
%E5%99%82

Code

MD5
87ec1427c8e5b306fd4011fcf2579562
Sha1
48fd5ede786c142868d93a268f16d9c98ba8c015
Base64
5ZmC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5642';
console.log(char);  // Output: 噂

Java:

char c = '\u5642';
System.out.println(c);  // Output: 噂

JSON:

{"text": "\u5642"}  // Value: 噂

Python:

char = '\u5642'
print(char)  # Output: 噂

Perl:

my $char = "\x{5642}";
print $char;  # Output: 噂

PHP:

$char = "\x{5642}";
echo $char;  // Output: 噂

Ruby:

char = "\u{5642}"
puts char  # Output: 噂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005642";  /* Display: 噂 */
}

HTML Decimal:

<p>HTML decimal: &#22082;</p>  <!-- Display: 噂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5642;</p>  <!-- Display: 噂 -->

URL Encoding:

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

Encodings

MD5:

87ec1427c8e5b306fd4011fcf2579562

SHA1:

48fd5ede786c142868d93a268f16d9c98ba8c015

Base64:

5ZmC