Unicode Finder

"醆" U+9186(CJK UNIFIED IDEOGRAPH-9186)

U+9186
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9186

Programming

C
\u9186
JavaScript
\u9186
Java
\u9186
Json
\u9186
Python
\u9186
Perl
\x{9186}
PHP
\x{9186}
Ruby
\u{9186}
Rust
\u{9186}
Go
\u9186

Web

CSS
\009186
HtmlDecimal
醆
HtmlHexadecimal
醆
Url
%E9%86%86

Code

MD5
ca5ed6e17e4358e05bbfb994181213de
Sha1
b3b756bce8309bb3fe21b10e86e66d35dd097131
Base64
6YaG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9186';
console.log(char);  // Output: 醆

Java:

char c = '\u9186';
System.out.println(c);  // Output: 醆

JSON:

{"text": "\u9186"}  // Value: 醆

Python:

char = '\u9186'
print(char)  # Output: 醆

Perl:

my $char = "\x{9186}";
print $char;  # Output: 醆

PHP:

$char = "\x{9186}";
echo $char;  // Output: 醆

Ruby:

char = "\u{9186}"
puts char  # Output: 醆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009186";  /* Display: 醆 */
}

HTML Decimal:

<p>HTML decimal: &#37254;</p>  <!-- Display: 醆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9186;</p>  <!-- Display: 醆 -->

URL Encoding:

// 醆 URL encoding
https://unicodefinder.com/search.php?query=%E9%86%86

Encodings

MD5:

ca5ed6e17e4358e05bbfb994181213de

SHA1:

b3b756bce8309bb3fe21b10e86e66d35dd097131

Base64:

6YaG