Unicode Finder

"里" U+91CC(CJK UNIFIED IDEOGRAPH-91CC)

U+91CC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-91CC

Programming

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

Web

CSS
\0091CC
HtmlDecimal
里
HtmlHexadecimal
里
Url
%E9%87%8C

Code

MD5
ff875e907414f315175529418fdce9ba
Sha1
c5a8f40bc028c0a7c4439dde983f165a48c388da
Base64
6YeM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u91CC';
console.log(char);  // Output: 里

Java:

char c = '\u91CC';
System.out.println(c);  // Output: 里

JSON:

{"text": "\u91CC"}  // Value: 里

Python:

char = '\u91CC'
print(char)  # Output: 里

Perl:

my $char = "\x{91CC}";
print $char;  # Output: 里

PHP:

$char = "\x{91CC}";
echo $char;  // Output: 里

Ruby:

char = "\u{91CC}"
puts char  # Output: 里

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37324;</p>  <!-- Display: 里 -->

HTML Hexadecimal:

<p>HTML hex: &#x91CC;</p>  <!-- Display: 里 -->

URL Encoding:

// 里 URL encoding
https://unicodefinder.com/search.php?query=%E9%87%8C

Encodings

MD5:

ff875e907414f315175529418fdce9ba

SHA1:

c5a8f40bc028c0a7c4439dde983f165a48c388da

Base64:

6YeM