Unicode Finder

"脦" U+8126(CJK UNIFIED IDEOGRAPH-8126)

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

Programming

C
\u8126
JavaScript
\u8126
Java
\u8126
Json
\u8126
Python
\u8126
Perl
\x{8126}
PHP
\x{8126}
Ruby
\u{8126}
Rust
\u{8126}
Go
\u8126

Web

CSS
\008126
HtmlDecimal
脦
HtmlHexadecimal
脦
Url
%E8%84%A6

Code

MD5
073939a21603b75648dedd65cc986ad1
Sha1
980c90d2604ea0ad075a646ede049d1d2b246698
Base64
6ISm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8126';
console.log(char);  // Output: 脦

Java:

char c = '\u8126';
System.out.println(c);  // Output: 脦

JSON:

{"text": "\u8126"}  // Value: 脦

Python:

char = '\u8126'
print(char)  # Output: 脦

Perl:

my $char = "\x{8126}";
print $char;  # Output: 脦

PHP:

$char = "\x{8126}";
echo $char;  // Output: 脦

Ruby:

char = "\u{8126}"
puts char  # Output: 脦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008126";  /* Display: 脦 */
}

HTML Decimal:

<p>HTML decimal: &#33062;</p>  <!-- Display: 脦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8126;</p>  <!-- Display: 脦 -->

URL Encoding:

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

Encodings

MD5:

073939a21603b75648dedd65cc986ad1

SHA1:

980c90d2604ea0ad075a646ede049d1d2b246698

Base64:

6ISm