Unicode Finder

"顬" U+986C(CJK UNIFIED IDEOGRAPH-986C)

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

Programming

C
\u986C
JavaScript
\u986C
Java
\u986C
Json
\u986C
Python
\u986C
Perl
\x{986C}
PHP
\x{986C}
Ruby
\u{986C}
Rust
\u{986C}
Go
\u986C

Web

CSS
\00986C
HtmlDecimal
顬
HtmlHexadecimal
顬
Url
%E9%A1%AC

Code

MD5
1620740bb521cbd9412c747c2f3a3dee
Sha1
3f884b4f2085dc0663abc34a3791c1d6e7aad270
Base64
6aGs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u986C';
console.log(char);  // Output: 顬

Java:

char c = '\u986C';
System.out.println(c);  // Output: 顬

JSON:

{"text": "\u986C"}  // Value: 顬

Python:

char = '\u986C'
print(char)  # Output: 顬

Perl:

my $char = "\x{986C}";
print $char;  # Output: 顬

PHP:

$char = "\x{986C}";
echo $char;  // Output: 顬

Ruby:

char = "\u{986C}"
puts char  # Output: 顬

Rust:

let c = '\u{986C}';
println!("{}", c);  // Output: 顬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00986C";  /* Display: 顬 */
}

HTML Decimal:

<p>HTML decimal: &#39020;</p>  <!-- Display: 顬 -->

HTML Hexadecimal:

<p>HTML hex: &#x986C;</p>  <!-- Display: 顬 -->

URL Encoding:

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

Encodings

MD5:

1620740bb521cbd9412c747c2f3a3dee

SHA1:

3f884b4f2085dc0663abc34a3791c1d6e7aad270

Base64:

6aGs