Unicode Finder

"脨" U+8128(CJK UNIFIED IDEOGRAPH-8128)

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

Programming

C
\u8128
JavaScript
\u8128
Java
\u8128
Json
\u8128
Python
\u8128
Perl
\x{8128}
PHP
\x{8128}
Ruby
\u{8128}
Rust
\u{8128}
Go
\u8128

Web

CSS
\008128
HtmlDecimal
脨
HtmlHexadecimal
脨
Url
%E8%84%A8

Code

MD5
c0d6e5856318a377880be834d86ecb08
Sha1
db107e6a9967c66a11922e9207c974705ef945d7
Base64
6ISo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8128';
console.log(char);  // Output: 脨

Java:

char c = '\u8128';
System.out.println(c);  // Output: 脨

JSON:

{"text": "\u8128"}  // Value: 脨

Python:

char = '\u8128'
print(char)  # Output: 脨

Perl:

my $char = "\x{8128}";
print $char;  # Output: 脨

PHP:

$char = "\x{8128}";
echo $char;  // Output: 脨

Ruby:

char = "\u{8128}"
puts char  # Output: 脨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008128";  /* Display: 脨 */
}

HTML Decimal:

<p>HTML decimal: &#33064;</p>  <!-- Display: 脨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8128;</p>  <!-- Display: 脨 -->

URL Encoding:

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

Encodings

MD5:

c0d6e5856318a377880be834d86ecb08

SHA1:

db107e6a9967c66a11922e9207c974705ef945d7

Base64:

6ISo