Unicode Finder

"噡" U+5661(CJK UNIFIED IDEOGRAPH-5661)

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

Programming

C
\u5661
JavaScript
\u5661
Java
\u5661
Json
\u5661
Python
\u5661
Perl
\x{5661}
PHP
\x{5661}
Ruby
\u{5661}
Rust
\u{5661}
Go
\u5661

Web

CSS
\005661
HtmlDecimal
噡
HtmlHexadecimal
噡
Url
%E5%99%A1

Code

MD5
aef0f07ce1eed8ee1077c2a5ef464786
Sha1
a581af943ceb0586ffccf993ba5a247d46d8094f
Base64
5Zmh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5661';
console.log(char);  // Output: 噡

Java:

char c = '\u5661';
System.out.println(c);  // Output: 噡

JSON:

{"text": "\u5661"}  // Value: 噡

Python:

char = '\u5661'
print(char)  # Output: 噡

Perl:

my $char = "\x{5661}";
print $char;  # Output: 噡

PHP:

$char = "\x{5661}";
echo $char;  // Output: 噡

Ruby:

char = "\u{5661}"
puts char  # Output: 噡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005661";  /* Display: 噡 */
}

HTML Decimal:

<p>HTML decimal: &#22113;</p>  <!-- Display: 噡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5661;</p>  <!-- Display: 噡 -->

URL Encoding:

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

Encodings

MD5:

aef0f07ce1eed8ee1077c2a5ef464786

SHA1:

a581af943ceb0586ffccf993ba5a247d46d8094f

Base64:

5Zmh