Unicode Finder

"鶇" U+9D87(CJK UNIFIED IDEOGRAPH-9D87)

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

Programming

C
\u9D87
JavaScript
\u9D87
Java
\u9D87
Json
\u9D87
Python
\u9D87
Perl
\x{9D87}
PHP
\x{9D87}
Ruby
\u{9D87}
Rust
\u{9D87}
Go
\u9D87

Web

CSS
\009D87
HtmlDecimal
鶇
HtmlHexadecimal
鶇
Url
%E9%B6%87

Code

MD5
2de4b0f42d3af2257b0f73e225bd45cd
Sha1
f13b86881e7205c8d9032cbd8056b13421cd2252
Base64
6baH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D87';
console.log(char);  // Output: 鶇

Java:

char c = '\u9D87';
System.out.println(c);  // Output: 鶇

JSON:

{"text": "\u9D87"}  // Value: 鶇

Python:

char = '\u9D87'
print(char)  # Output: 鶇

Perl:

my $char = "\x{9D87}";
print $char;  # Output: 鶇

PHP:

$char = "\x{9D87}";
echo $char;  // Output: 鶇

Ruby:

char = "\u{9D87}"
puts char  # Output: 鶇

Rust:

let c = '\u{9D87}';
println!("{}", c);  // Output: 鶇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009D87";  /* Display: 鶇 */
}

HTML Decimal:

<p>HTML decimal: &#40327;</p>  <!-- Display: 鶇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D87;</p>  <!-- Display: 鶇 -->

URL Encoding:

// 鶇 URL encoding
https://unicodefinder.com/search.php?query=%E9%B6%87

Encodings

MD5:

2de4b0f42d3af2257b0f73e225bd45cd

SHA1:

f13b86881e7205c8d9032cbd8056b13421cd2252

Base64:

6baH