Unicode Finder

"颕" U+9895(CJK UNIFIED IDEOGRAPH-9895)

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

Programming

C
\u9895
JavaScript
\u9895
Java
\u9895
Json
\u9895
Python
\u9895
Perl
\x{9895}
PHP
\x{9895}
Ruby
\u{9895}
Rust
\u{9895}
Go
\u9895

Web

CSS
\009895
HtmlDecimal
颕
HtmlHexadecimal
颕
Url
%E9%A2%95

Code

MD5
1a8135b145e648c3019284332258fc4a
Sha1
0c2852b7183aeaf208787a634522c3c177d570e5
Base64
6aKV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9895';
console.log(char);  // Output: 颕

Java:

char c = '\u9895';
System.out.println(c);  // Output: 颕

JSON:

{"text": "\u9895"}  // Value: 颕

Python:

char = '\u9895'
print(char)  # Output: 颕

Perl:

my $char = "\x{9895}";
print $char;  # Output: 颕

PHP:

$char = "\x{9895}";
echo $char;  // Output: 颕

Ruby:

char = "\u{9895}"
puts char  # Output: 颕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009895";  /* Display: 颕 */
}

HTML Decimal:

<p>HTML decimal: &#39061;</p>  <!-- Display: 颕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9895;</p>  <!-- Display: 颕 -->

URL Encoding:

// 颕 URL encoding
https://unicodefinder.com/search.php?query=%E9%A2%95

Encodings

MD5:

1a8135b145e648c3019284332258fc4a

SHA1:

0c2852b7183aeaf208787a634522c3c177d570e5

Base64:

6aKV