Unicode Finder

"醱" U+91B1(CJK UNIFIED IDEOGRAPH-91B1)

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

Programming

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

Web

CSS
\0091B1
HtmlDecimal
醱
HtmlHexadecimal
醱
Url
%E9%86%B1

Code

MD5
54a4ec9a2512fb3764e85467415347c1
Sha1
7497af8ea4a35d437e2de2ec4bafea8f291c7c97
Base64
6Yax

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91B1';
console.log(char);  // Output: 醱

Java:

char c = '\u91B1';
System.out.println(c);  // Output: 醱

JSON:

{"text": "\u91B1"}  // Value: 醱

Python:

char = '\u91B1'
print(char)  # Output: 醱

Perl:

my $char = "\x{91B1}";
print $char;  # Output: 醱

PHP:

$char = "\x{91B1}";
echo $char;  // Output: 醱

Ruby:

char = "\u{91B1}"
puts char  # Output: 醱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37297;</p>  <!-- Display: 醱 -->

HTML Hexadecimal:

<p>HTML hex: &#x91B1;</p>  <!-- Display: 醱 -->

URL Encoding:

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

Encodings

MD5:

54a4ec9a2512fb3764e85467415347c1

SHA1:

7497af8ea4a35d437e2de2ec4bafea8f291c7c97

Base64:

6Yax