Unicode Finder

"醅" U+9185(CJK UNIFIED IDEOGRAPH-9185)

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

Programming

C
\u9185
JavaScript
\u9185
Java
\u9185
Json
\u9185
Python
\u9185
Perl
\x{9185}
PHP
\x{9185}
Ruby
\u{9185}
Rust
\u{9185}
Go
\u9185

Web

CSS
\009185
HtmlDecimal
醅
HtmlHexadecimal
醅
Url
%E9%86%85

Code

MD5
1e846c38459609d3b89d2e007eaab726
Sha1
2582fc4df7891afa467fc1e22aee387d330e804e
Base64
6YaF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9185';
console.log(char);  // Output: 醅

Java:

char c = '\u9185';
System.out.println(c);  // Output: 醅

JSON:

{"text": "\u9185"}  // Value: 醅

Python:

char = '\u9185'
print(char)  # Output: 醅

Perl:

my $char = "\x{9185}";
print $char;  # Output: 醅

PHP:

$char = "\x{9185}";
echo $char;  // Output: 醅

Ruby:

char = "\u{9185}"
puts char  # Output: 醅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009185";  /* Display: 醅 */
}

HTML Decimal:

<p>HTML decimal: &#37253;</p>  <!-- Display: 醅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9185;</p>  <!-- Display: 醅 -->

URL Encoding:

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

Encodings

MD5:

1e846c38459609d3b89d2e007eaab726

SHA1:

2582fc4df7891afa467fc1e22aee387d330e804e

Base64:

6YaF