Unicode Finder

"麇" U+9E87(CJK UNIFIED IDEOGRAPH-9E87)

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

Programming

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

Web

CSS
\009E87
HtmlDecimal
麇
HtmlHexadecimal
麇
Url
%E9%BA%87

Code

MD5
d7e222c0b5e268ca974a4dbca5b868f1
Sha1
5eea3676f27bf7c21931c1e3640d3e5002e27855
Base64
6bqH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9E87';
console.log(char);  // Output: 麇

Java:

char c = '\u9E87';
System.out.println(c);  // Output: 麇

JSON:

{"text": "\u9E87"}  // Value: 麇

Python:

char = '\u9E87'
print(char)  # Output: 麇

Perl:

my $char = "\x{9E87}";
print $char;  # Output: 麇

PHP:

$char = "\x{9E87}";
echo $char;  // Output: 麇

Ruby:

char = "\u{9E87}"
puts char  # Output: 麇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40583;</p>  <!-- Display: 麇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E87;</p>  <!-- Display: 麇 -->

URL Encoding:

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

Encodings

MD5:

d7e222c0b5e268ca974a4dbca5b868f1

SHA1:

5eea3676f27bf7c21931c1e3640d3e5002e27855

Base64:

6bqH