Unicode Finder

"醫" U+91AB(CJK UNIFIED IDEOGRAPH-91AB)

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

Programming

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

Web

CSS
\0091AB
HtmlDecimal
醫
HtmlHexadecimal
醫
Url
%E9%86%AB

Code

MD5
27b1906f3b115fff70ef0dce914f4bd6
Sha1
ba5e508fd01fcf7c2f85bfe32c8ecd8b618cc19d
Base64
6Yar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u91AB';
console.log(char);  // Output: 醫

Java:

char c = '\u91AB';
System.out.println(c);  // Output: 醫

JSON:

{"text": "\u91AB"}  // Value: 醫

Python:

char = '\u91AB'
print(char)  # Output: 醫

Perl:

my $char = "\x{91AB}";
print $char;  # Output: 醫

PHP:

$char = "\x{91AB}";
echo $char;  // Output: 醫

Ruby:

char = "\u{91AB}"
puts char  # Output: 醫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37291;</p>  <!-- Display: 醫 -->

HTML Hexadecimal:

<p>HTML hex: &#x91AB;</p>  <!-- Display: 醫 -->

URL Encoding:

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

Encodings

MD5:

27b1906f3b115fff70ef0dce914f4bd6

SHA1:

ba5e508fd01fcf7c2f85bfe32c8ecd8b618cc19d

Base64:

6Yar