Unicode Finder

"搉" U+6409(CJK UNIFIED IDEOGRAPH-6409)

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

Programming

C
\u6409
JavaScript
\u6409
Java
\u6409
Json
\u6409
Python
\u6409
Perl
\x{6409}
PHP
\x{6409}
Ruby
\u{6409}
Rust
\u{6409}
Go
\u6409

Web

CSS
\006409
HtmlDecimal
搉
HtmlHexadecimal
搉
Url
%E6%90%89

Code

MD5
da084bf04ae14bae9689d9112390df39
Sha1
f674cdbd081b5a01224a42fd9a7de84387fb7537
Base64
5pCJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6409';
console.log(char);  // Output: 搉

Java:

char c = '\u6409';
System.out.println(c);  // Output: 搉

JSON:

{"text": "\u6409"}  // Value: 搉

Python:

char = '\u6409'
print(char)  # Output: 搉

Perl:

my $char = "\x{6409}";
print $char;  # Output: 搉

PHP:

$char = "\x{6409}";
echo $char;  // Output: 搉

Ruby:

char = "\u{6409}"
puts char  # Output: 搉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006409";  /* Display: 搉 */
}

HTML Decimal:

<p>HTML decimal: &#25609;</p>  <!-- Display: 搉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6409;</p>  <!-- Display: 搉 -->

URL Encoding:

// 搉 URL encoding
https://unicodefinder.com/search.php?query=%E6%90%89

Encodings

MD5:

da084bf04ae14bae9689d9112390df39

SHA1:

f674cdbd081b5a01224a42fd9a7de84387fb7537

Base64:

5pCJ