Unicode Finder

"滉" U+6EC9(CJK UNIFIED IDEOGRAPH-6EC9)

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

Programming

C
\u6EC9
JavaScript
\u6EC9
Java
\u6EC9
Json
\u6EC9
Python
\u6EC9
Perl
\x{6EC9}
PHP
\x{6EC9}
Ruby
\u{6EC9}
Rust
\u{6EC9}
Go
\u6EC9

Web

CSS
\006EC9
HtmlDecimal
滉
HtmlHexadecimal
滉
Url
%E6%BB%89

Code

MD5
1aed580f5ec0be0e55408267f31e6d34
Sha1
eff23abaf3ce97294307981acf52a5b67553a66e
Base64
5ruJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6EC9';
console.log(char);  // Output: 滉

Java:

char c = '\u6EC9';
System.out.println(c);  // Output: 滉

JSON:

{"text": "\u6EC9"}  // Value: 滉

Python:

char = '\u6EC9'
print(char)  # Output: 滉

Perl:

my $char = "\x{6EC9}";
print $char;  # Output: 滉

PHP:

$char = "\x{6EC9}";
echo $char;  // Output: 滉

Ruby:

char = "\u{6EC9}"
puts char  # Output: 滉

Rust:

let c = '\u{6EC9}';
println!("{}", c);  // Output: 滉

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006EC9";  /* Display: 滉 */
}

HTML Decimal:

<p>HTML decimal: &#28361;</p>  <!-- Display: 滉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EC9;</p>  <!-- Display: 滉 -->

URL Encoding:

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

Encodings

MD5:

1aed580f5ec0be0e55408267f31e6d34

SHA1:

eff23abaf3ce97294307981acf52a5b67553a66e

Base64:

5ruJ