Unicode Finder

"醘" U+9198(CJK UNIFIED IDEOGRAPH-9198)

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

Programming

C
\u9198
JavaScript
\u9198
Java
\u9198
Json
\u9198
Python
\u9198
Perl
\x{9198}
PHP
\x{9198}
Ruby
\u{9198}
Rust
\u{9198}
Go
\u9198

Web

CSS
\009198
HtmlDecimal
醘
HtmlHexadecimal
醘
Url
%E9%86%98

Code

MD5
01f7613bf81f7e822ed7af85d01378f6
Sha1
dee63936876a49a35ee08ab6e2258829050c7e34
Base64
6YaY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9198';
console.log(char);  // Output: 醘

Java:

char c = '\u9198';
System.out.println(c);  // Output: 醘

JSON:

{"text": "\u9198"}  // Value: 醘

Python:

char = '\u9198'
print(char)  # Output: 醘

Perl:

my $char = "\x{9198}";
print $char;  # Output: 醘

PHP:

$char = "\x{9198}";
echo $char;  // Output: 醘

Ruby:

char = "\u{9198}"
puts char  # Output: 醘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009198";  /* Display: 醘 */
}

HTML Decimal:

<p>HTML decimal: &#37272;</p>  <!-- Display: 醘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9198;</p>  <!-- Display: 醘 -->

URL Encoding:

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

Encodings

MD5:

01f7613bf81f7e822ed7af85d01378f6

SHA1:

dee63936876a49a35ee08ab6e2258829050c7e34

Base64:

6YaY