Unicode Finder

"顠" U+9860(CJK UNIFIED IDEOGRAPH-9860)

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

Programming

C
\u9860
JavaScript
\u9860
Java
\u9860
Json
\u9860
Python
\u9860
Perl
\x{9860}
PHP
\x{9860}
Ruby
\u{9860}
Rust
\u{9860}
Go
\u9860

Web

CSS
\009860
HtmlDecimal
顠
HtmlHexadecimal
顠
Url
%E9%A1%A0

Code

MD5
815bab3e1073b27d7debfa94487318a9
Sha1
dfbd6a119fe0921ef9327c4526d427423c4b9697
Base64
6aGg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9860';
console.log(char);  // Output: 顠

Java:

char c = '\u9860';
System.out.println(c);  // Output: 顠

JSON:

{"text": "\u9860"}  // Value: 顠

Python:

char = '\u9860'
print(char)  # Output: 顠

Perl:

my $char = "\x{9860}";
print $char;  # Output: 顠

PHP:

$char = "\x{9860}";
echo $char;  // Output: 顠

Ruby:

char = "\u{9860}"
puts char  # Output: 顠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009860";  /* Display: 顠 */
}

HTML Decimal:

<p>HTML decimal: &#39008;</p>  <!-- Display: 顠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9860;</p>  <!-- Display: 顠 -->

URL Encoding:

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

Encodings

MD5:

815bab3e1073b27d7debfa94487318a9

SHA1:

dfbd6a119fe0921ef9327c4526d427423c4b9697

Base64:

6aGg