Unicode Finder

"脋" U+810B(CJK UNIFIED IDEOGRAPH-810B)

U+810B
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-810B

Programming

C
\u810B
JavaScript
\u810B
Java
\u810B
Json
\u810B
Python
\u810B
Perl
\x{810B}
PHP
\x{810B}
Ruby
\u{810B}
Rust
\u{810B}
Go
\u810B

Web

CSS
\00810B
HtmlDecimal
脋
HtmlHexadecimal
脋
Url
%E8%84%8B

Code

MD5
c015730903f6ad1a3701378aa6b94988
Sha1
9a47777280f61968547a19d54f8608f7c9430212
Base64
6ISL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u810B';
console.log(char);  // Output: 脋

Java:

char c = '\u810B';
System.out.println(c);  // Output: 脋

JSON:

{"text": "\u810B"}  // Value: 脋

Python:

char = '\u810B'
print(char)  # Output: 脋

Perl:

my $char = "\x{810B}";
print $char;  # Output: 脋

PHP:

$char = "\x{810B}";
echo $char;  // Output: 脋

Ruby:

char = "\u{810B}"
puts char  # Output: 脋

Rust:

let c = '\u{810B}';
println!("{}", c);  // Output: 脋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00810B";  /* Display: 脋 */
}

HTML Decimal:

<p>HTML decimal: &#33035;</p>  <!-- Display: 脋 -->

HTML Hexadecimal:

<p>HTML hex: &#x810B;</p>  <!-- Display: 脋 -->

URL Encoding:

// 脋 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%8B

Encodings

MD5:

c015730903f6ad1a3701378aa6b94988

SHA1:

9a47777280f61968547a19d54f8608f7c9430212

Base64:

6ISL