Unicode Finder

"顥" U+9865(CJK UNIFIED IDEOGRAPH-9865)

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

Programming

C
\u9865
JavaScript
\u9865
Java
\u9865
Json
\u9865
Python
\u9865
Perl
\x{9865}
PHP
\x{9865}
Ruby
\u{9865}
Rust
\u{9865}
Go
\u9865

Web

CSS
\009865
HtmlDecimal
顥
HtmlHexadecimal
顥
Url
%E9%A1%A5

Code

MD5
65f79c61badf116e17a10028f86ccc5d
Sha1
04692eb504ef9d25cebb76464c04bbaa261699a4
Base64
6aGl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9865';
console.log(char);  // Output: 顥

Java:

char c = '\u9865';
System.out.println(c);  // Output: 顥

JSON:

{"text": "\u9865"}  // Value: 顥

Python:

char = '\u9865'
print(char)  # Output: 顥

Perl:

my $char = "\x{9865}";
print $char;  # Output: 顥

PHP:

$char = "\x{9865}";
echo $char;  // Output: 顥

Ruby:

char = "\u{9865}"
puts char  # Output: 顥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009865";  /* Display: 顥 */
}

HTML Decimal:

<p>HTML decimal: &#39013;</p>  <!-- Display: 顥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9865;</p>  <!-- Display: 顥 -->

URL Encoding:

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

Encodings

MD5:

65f79c61badf116e17a10028f86ccc5d

SHA1:

04692eb504ef9d25cebb76464c04bbaa261699a4

Base64:

6aGl