Unicode Finder

"麯" U+9EAF(CJK UNIFIED IDEOGRAPH-9EAF)

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

Programming

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

Web

CSS
\009EAF
HtmlDecimal
麯
HtmlHexadecimal
麯
Url
%E9%BA%AF

Code

MD5
ddc23b7229f1b8f88c58277533f5b140
Sha1
fd0fb287c03274eb4aac15c84b63f2bf2a3301e3
Base64
6bqv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EAF';
console.log(char);  // Output: 麯

Java:

char c = '\u9EAF';
System.out.println(c);  // Output: 麯

JSON:

{"text": "\u9EAF"}  // Value: 麯

Python:

char = '\u9EAF'
print(char)  # Output: 麯

Perl:

my $char = "\x{9EAF}";
print $char;  # Output: 麯

PHP:

$char = "\x{9EAF}";
echo $char;  // Output: 麯

Ruby:

char = "\u{9EAF}"
puts char  # Output: 麯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40623;</p>  <!-- Display: 麯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EAF;</p>  <!-- Display: 麯 -->

URL Encoding:

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

Encodings

MD5:

ddc23b7229f1b8f88c58277533f5b140

SHA1:

fd0fb287c03274eb4aac15c84b63f2bf2a3301e3

Base64:

6bqv