Unicode Finder

"顦" U+9866(CJK UNIFIED IDEOGRAPH-9866)

U+9866
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9866

Programming

C
\u9866
JavaScript
\u9866
Java
\u9866
Json
\u9866
Python
\u9866
Perl
\x{9866}
PHP
\x{9866}
Ruby
\u{9866}
Rust
\u{9866}
Go
\u9866

Web

CSS
\009866
HtmlDecimal
顦
HtmlHexadecimal
顦
Url
%E9%A1%A6

Code

MD5
7fe294d4d8091d0329bb24c53acf645c
Sha1
76ab20e9639ffdd9adbb4fc24a2923a827fb0faa
Base64
6aGm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9866';
console.log(char);  // Output: 顦

Java:

char c = '\u9866';
System.out.println(c);  // Output: 顦

JSON:

{"text": "\u9866"}  // Value: 顦

Python:

char = '\u9866'
print(char)  # Output: 顦

Perl:

my $char = "\x{9866}";
print $char;  # Output: 顦

PHP:

$char = "\x{9866}";
echo $char;  // Output: 顦

Ruby:

char = "\u{9866}"
puts char  # Output: 顦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009866";  /* Display: 顦 */
}

HTML Decimal:

<p>HTML decimal: &#39014;</p>  <!-- Display: 顦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9866;</p>  <!-- Display: 顦 -->

URL Encoding:

// 顦 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%A6

Encodings

MD5:

7fe294d4d8091d0329bb24c53acf645c

SHA1:

76ab20e9639ffdd9adbb4fc24a2923a827fb0faa

Base64:

6aGm