Unicode Finder

"醻" U+91BB(CJK UNIFIED IDEOGRAPH-91BB)

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

Programming

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

Web

CSS
\0091BB
HtmlDecimal
醻
HtmlHexadecimal
醻
Url
%E9%86%BB

Code

MD5
8da6bb9878c00e02f0ed588804d0da46
Sha1
3b6045987d56db1c25f218cfd1b5d50dd70ce14d
Base64
6Ya7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91BB';
console.log(char);  // Output: 醻

Java:

char c = '\u91BB';
System.out.println(c);  // Output: 醻

JSON:

{"text": "\u91BB"}  // Value: 醻

Python:

char = '\u91BB'
print(char)  # Output: 醻

Perl:

my $char = "\x{91BB}";
print $char;  # Output: 醻

PHP:

$char = "\x{91BB}";
echo $char;  // Output: 醻

Ruby:

char = "\u{91BB}"
puts char  # Output: 醻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37307;</p>  <!-- Display: 醻 -->

HTML Hexadecimal:

<p>HTML hex: &#x91BB;</p>  <!-- Display: 醻 -->

URL Encoding:

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

Encodings

MD5:

8da6bb9878c00e02f0ed588804d0da46

SHA1:

3b6045987d56db1c25f218cfd1b5d50dd70ce14d

Base64:

6Ya7