Unicode Finder

"醂" U+9182(CJK UNIFIED IDEOGRAPH-9182)

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

Programming

C
\u9182
JavaScript
\u9182
Java
\u9182
Json
\u9182
Python
\u9182
Perl
\x{9182}
PHP
\x{9182}
Ruby
\u{9182}
Rust
\u{9182}
Go
\u9182

Web

CSS
\009182
HtmlDecimal
醂
HtmlHexadecimal
醂
Url
%E9%86%82

Code

MD5
8c6919de5cc433c55a94dc3dce61d7b4
Sha1
e07c7917dc33c098d37529c02fc04d45c007fd7b
Base64
6YaC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9182';
console.log(char);  // Output: 醂

Java:

char c = '\u9182';
System.out.println(c);  // Output: 醂

JSON:

{"text": "\u9182"}  // Value: 醂

Python:

char = '\u9182'
print(char)  # Output: 醂

Perl:

my $char = "\x{9182}";
print $char;  # Output: 醂

PHP:

$char = "\x{9182}";
echo $char;  // Output: 醂

Ruby:

char = "\u{9182}"
puts char  # Output: 醂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009182";  /* Display: 醂 */
}

HTML Decimal:

<p>HTML decimal: &#37250;</p>  <!-- Display: 醂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9182;</p>  <!-- Display: 醂 -->

URL Encoding:

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

Encodings

MD5:

8c6919de5cc433c55a94dc3dce61d7b4

SHA1:

e07c7917dc33c098d37529c02fc04d45c007fd7b

Base64:

6YaC