Unicode Finder

"陖" U+9656(CJK UNIFIED IDEOGRAPH-9656)

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

Programming

C
\u9656
JavaScript
\u9656
Java
\u9656
Json
\u9656
Python
\u9656
Perl
\x{9656}
PHP
\x{9656}
Ruby
\u{9656}
Rust
\u{9656}
Go
\u9656

Web

CSS
\009656
HtmlDecimal
陖
HtmlHexadecimal
陖
Url
%E9%99%96

Code

MD5
1269307a33bf6578bdcad1ffac0fd69d
Sha1
622f3514dae27e26a46fe9857c40566d17c8b1cc
Base64
6ZmW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9656';
console.log(char);  // Output: 陖

Java:

char c = '\u9656';
System.out.println(c);  // Output: 陖

JSON:

{"text": "\u9656"}  // Value: 陖

Python:

char = '\u9656'
print(char)  # Output: 陖

Perl:

my $char = "\x{9656}";
print $char;  # Output: 陖

PHP:

$char = "\x{9656}";
echo $char;  // Output: 陖

Ruby:

char = "\u{9656}"
puts char  # Output: 陖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009656";  /* Display: 陖 */
}

HTML Decimal:

<p>HTML decimal: &#38486;</p>  <!-- Display: 陖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9656;</p>  <!-- Display: 陖 -->

URL Encoding:

// 陖 URL encoding
https://unicodefinder.com/search.php?query=%E9%99%96

Encodings

MD5:

1269307a33bf6578bdcad1ffac0fd69d

SHA1:

622f3514dae27e26a46fe9857c40566d17c8b1cc

Base64:

6ZmW