Unicode Finder

"脠" U+8120(CJK UNIFIED IDEOGRAPH-8120)

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

Programming

C
\u8120
JavaScript
\u8120
Java
\u8120
Json
\u8120
Python
\u8120
Perl
\x{8120}
PHP
\x{8120}
Ruby
\u{8120}
Rust
\u{8120}
Go
\u8120

Web

CSS
\008120
HtmlDecimal
脠
HtmlHexadecimal
脠
Url
%E8%84%A0

Code

MD5
7c207cd4483f9eb32750f810f82946da
Sha1
24130c269a83a95775cff6f9d8b7a6f834456b54
Base64
6ISg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8120';
console.log(char);  // Output: 脠

Java:

char c = '\u8120';
System.out.println(c);  // Output: 脠

JSON:

{"text": "\u8120"}  // Value: 脠

Python:

char = '\u8120'
print(char)  # Output: 脠

Perl:

my $char = "\x{8120}";
print $char;  # Output: 脠

PHP:

$char = "\x{8120}";
echo $char;  // Output: 脠

Ruby:

char = "\u{8120}"
puts char  # Output: 脠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008120";  /* Display: 脠 */
}

HTML Decimal:

<p>HTML decimal: &#33056;</p>  <!-- Display: 脠 -->

HTML Hexadecimal:

<p>HTML hex: &#x8120;</p>  <!-- Display: 脠 -->

URL Encoding:

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

Encodings

MD5:

7c207cd4483f9eb32750f810f82946da

SHA1:

24130c269a83a95775cff6f9d8b7a6f834456b54

Base64:

6ISg