Unicode Finder

"醼" U+91BC(CJK UNIFIED IDEOGRAPH-91BC)

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

Programming

C
\u91BC
JavaScript
\u91BC
Java
\u91BC
Json
\u91BC
Python
\u91BC
Perl
\x{91BC}
PHP
\x{91BC}
Ruby
\u{91BC}
Rust
\u{91BC}
Go
\u91BC

Web

CSS
\0091BC
HtmlDecimal
醼
HtmlHexadecimal
醼
Url
%E9%86%BC

Code

MD5
f7e4103fa792fefcb6d5bbfec299e9cf
Sha1
5b7cba086f462af903721e2bfb13d9f801308f09
Base64
6Ya8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91BC';
console.log(char);  // Output: 醼

Java:

char c = '\u91BC';
System.out.println(c);  // Output: 醼

JSON:

{"text": "\u91BC"}  // Value: 醼

Python:

char = '\u91BC'
print(char)  # Output: 醼

Perl:

my $char = "\x{91BC}";
print $char;  # Output: 醼

PHP:

$char = "\x{91BC}";
echo $char;  // Output: 醼

Ruby:

char = "\u{91BC}"
puts char  # Output: 醼

Rust:

let c = '\u{91BC}';
println!("{}", c);  // Output: 醼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0091BC";  /* Display: 醼 */
}

HTML Decimal:

<p>HTML decimal: &#37308;</p>  <!-- Display: 醼 -->

HTML Hexadecimal:

<p>HTML hex: &#x91BC;</p>  <!-- Display: 醼 -->

URL Encoding:

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

Encodings

MD5:

f7e4103fa792fefcb6d5bbfec299e9cf

SHA1:

5b7cba086f462af903721e2bfb13d9f801308f09

Base64:

6Ya8