Unicode Finder

"醓" U+9193(CJK UNIFIED IDEOGRAPH-9193)

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

Programming

C
\u9193
JavaScript
\u9193
Java
\u9193
Json
\u9193
Python
\u9193
Perl
\x{9193}
PHP
\x{9193}
Ruby
\u{9193}
Rust
\u{9193}
Go
\u9193

Web

CSS
\009193
HtmlDecimal
醓
HtmlHexadecimal
醓
Url
%E9%86%93

Code

MD5
2d3dda39201b1c4e20e2768a514104eb
Sha1
aaaefad7efa08fc6dda464853716ffae1b82e7f1
Base64
6YaT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9193';
console.log(char);  // Output: 醓

Java:

char c = '\u9193';
System.out.println(c);  // Output: 醓

JSON:

{"text": "\u9193"}  // Value: 醓

Python:

char = '\u9193'
print(char)  # Output: 醓

Perl:

my $char = "\x{9193}";
print $char;  # Output: 醓

PHP:

$char = "\x{9193}";
echo $char;  // Output: 醓

Ruby:

char = "\u{9193}"
puts char  # Output: 醓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009193";  /* Display: 醓 */
}

HTML Decimal:

<p>HTML decimal: &#37267;</p>  <!-- Display: 醓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9193;</p>  <!-- Display: 醓 -->

URL Encoding:

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

Encodings

MD5:

2d3dda39201b1c4e20e2768a514104eb

SHA1:

aaaefad7efa08fc6dda464853716ffae1b82e7f1

Base64:

6YaT