Unicode Finder

"脬" U+812C(CJK UNIFIED IDEOGRAPH-812C)

U+812C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-812C

Programming

C
\u812C
JavaScript
\u812C
Java
\u812C
Json
\u812C
Python
\u812C
Perl
\x{812C}
PHP
\x{812C}
Ruby
\u{812C}
Rust
\u{812C}
Go
\u812C

Web

CSS
\00812C
HtmlDecimal
脬
HtmlHexadecimal
脬
Url
%E8%84%AC

Code

MD5
e2189c130009100b082136d361d146d9
Sha1
22164972db82054d2017894fd60f02e125ab7f15
Base64
6ISs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u812C';
console.log(char);  // Output: 脬

Java:

char c = '\u812C';
System.out.println(c);  // Output: 脬

JSON:

{"text": "\u812C"}  // Value: 脬

Python:

char = '\u812C'
print(char)  # Output: 脬

Perl:

my $char = "\x{812C}";
print $char;  # Output: 脬

PHP:

$char = "\x{812C}";
echo $char;  // Output: 脬

Ruby:

char = "\u{812C}"
puts char  # Output: 脬

Rust:

let c = '\u{812C}';
println!("{}", c);  // Output: 脬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00812C";  /* Display: 脬 */
}

HTML Decimal:

<p>HTML decimal: &#33068;</p>  <!-- Display: 脬 -->

HTML Hexadecimal:

<p>HTML hex: &#x812C;</p>  <!-- Display: 脬 -->

URL Encoding:

// 脬 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%AC

Encodings

MD5:

e2189c130009100b082136d361d146d9

SHA1:

22164972db82054d2017894fd60f02e125ab7f15

Base64:

6ISs