Unicode Finder

"顨" U+9868(CJK UNIFIED IDEOGRAPH-9868)

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

Programming

C
\u9868
JavaScript
\u9868
Java
\u9868
Json
\u9868
Python
\u9868
Perl
\x{9868}
PHP
\x{9868}
Ruby
\u{9868}
Rust
\u{9868}
Go
\u9868

Web

CSS
\009868
HtmlDecimal
顨
HtmlHexadecimal
顨
Url
%E9%A1%A8

Code

MD5
91e05f12304d90c4eef314c228346f25
Sha1
c1169f2466f0368f79ef5b974da1175fb270c419
Base64
6aGo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9868';
console.log(char);  // Output: 顨

Java:

char c = '\u9868';
System.out.println(c);  // Output: 顨

JSON:

{"text": "\u9868"}  // Value: 顨

Python:

char = '\u9868'
print(char)  # Output: 顨

Perl:

my $char = "\x{9868}";
print $char;  # Output: 顨

PHP:

$char = "\x{9868}";
echo $char;  // Output: 顨

Ruby:

char = "\u{9868}"
puts char  # Output: 顨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009868";  /* Display: 顨 */
}

HTML Decimal:

<p>HTML decimal: &#39016;</p>  <!-- Display: 顨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9868;</p>  <!-- Display: 顨 -->

URL Encoding:

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

Encodings

MD5:

91e05f12304d90c4eef314c228346f25

SHA1:

c1169f2466f0368f79ef5b974da1175fb270c419

Base64:

6aGo