Unicode Finder

"脐" U+8110(CJK UNIFIED IDEOGRAPH-8110)

U+8110
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8110

Programming

C
\u8110
JavaScript
\u8110
Java
\u8110
Json
\u8110
Python
\u8110
Perl
\x{8110}
PHP
\x{8110}
Ruby
\u{8110}
Rust
\u{8110}
Go
\u8110

Web

CSS
\008110
HtmlDecimal
脐
HtmlHexadecimal
脐
Url
%E8%84%90

Code

MD5
114a03f7194b7d8e777fc433c18b8322
Sha1
6c35681136322c5c862e090a3c8923f92bd7eb52
Base64
6ISQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8110';
console.log(char);  // Output: 脐

Java:

char c = '\u8110';
System.out.println(c);  // Output: 脐

JSON:

{"text": "\u8110"}  // Value: 脐

Python:

char = '\u8110'
print(char)  # Output: 脐

Perl:

my $char = "\x{8110}";
print $char;  # Output: 脐

PHP:

$char = "\x{8110}";
echo $char;  // Output: 脐

Ruby:

char = "\u{8110}"
puts char  # Output: 脐

Rust:

let c = '\u{8110}';
println!("{}", c);  // Output: 脐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008110";  /* Display: 脐 */
}

HTML Decimal:

<p>HTML decimal: &#33040;</p>  <!-- Display: 脐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8110;</p>  <!-- Display: 脐 -->

URL Encoding:

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

Encodings

MD5:

114a03f7194b7d8e777fc433c18b8322

SHA1:

6c35681136322c5c862e090a3c8923f92bd7eb52

Base64:

6ISQ