Unicode Finder

"麌" U+9E8C(CJK UNIFIED IDEOGRAPH-9E8C)

U+9E8C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9E8C

Programming

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

Web

CSS
\009E8C
HtmlDecimal
麌
HtmlHexadecimal
麌
Url
%E9%BA%8C

Code

MD5
a1bb087d7937535a0dbffe71c180029b
Sha1
850ea1f9d0b6264c1becdd4b58d7bd6de8a625a1
Base64
6bqM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9E8C';
console.log(char);  // Output: 麌

Java:

char c = '\u9E8C';
System.out.println(c);  // Output: 麌

JSON:

{"text": "\u9E8C"}  // Value: 麌

Python:

char = '\u9E8C'
print(char)  # Output: 麌

Perl:

my $char = "\x{9E8C}";
print $char;  # Output: 麌

PHP:

$char = "\x{9E8C}";
echo $char;  // Output: 麌

Ruby:

char = "\u{9E8C}"
puts char  # Output: 麌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40588;</p>  <!-- Display: 麌 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E8C;</p>  <!-- Display: 麌 -->

URL Encoding:

// 麌 URL encoding
https://unicodefinder.com/search.php?query=%E9%BA%8C

Encodings

MD5:

a1bb087d7937535a0dbffe71c180029b

SHA1:

850ea1f9d0b6264c1becdd4b58d7bd6de8a625a1

Base64:

6bqM