Unicode Finder

"黆" U+9EC6(CJK UNIFIED IDEOGRAPH-9EC6)

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

Programming

C
\u9EC6
JavaScript
\u9EC6
Java
\u9EC6
Json
\u9EC6
Python
\u9EC6
Perl
\x{9EC6}
PHP
\x{9EC6}
Ruby
\u{9EC6}
Rust
\u{9EC6}
Go
\u9EC6

Web

CSS
\009EC6
HtmlDecimal
黆
HtmlHexadecimal
黆
Url
%E9%BB%86

Code

MD5
4c58caf7280e522ff7a233322c0ca450
Sha1
2f9663998278a9bc48792b97209143b705705bf4
Base64
6buG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9EC6';
console.log(char);  // Output: 黆

Java:

char c = '\u9EC6';
System.out.println(c);  // Output: 黆

JSON:

{"text": "\u9EC6"}  // Value: 黆

Python:

char = '\u9EC6'
print(char)  # Output: 黆

Perl:

my $char = "\x{9EC6}";
print $char;  # Output: 黆

PHP:

$char = "\x{9EC6}";
echo $char;  // Output: 黆

Ruby:

char = "\u{9EC6}"
puts char  # Output: 黆

Rust:

let c = '\u{9EC6}';
println!("{}", c);  // Output: 黆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009EC6";  /* Display: 黆 */
}

HTML Decimal:

<p>HTML decimal: &#40646;</p>  <!-- Display: 黆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EC6;</p>  <!-- Display: 黆 -->

URL Encoding:

// 黆 URL encoding
https://unicodefinder.com/search.php?query=%E9%BB%86

Encodings

MD5:

4c58caf7280e522ff7a233322c0ca450

SHA1:

2f9663998278a9bc48792b97209143b705705bf4

Base64:

6buG