Unicode Finder

"脃" U+8103(CJK UNIFIED IDEOGRAPH-8103)

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

Programming

C
\u8103
JavaScript
\u8103
Java
\u8103
Json
\u8103
Python
\u8103
Perl
\x{8103}
PHP
\x{8103}
Ruby
\u{8103}
Rust
\u{8103}
Go
\u8103

Web

CSS
\008103
HtmlDecimal
脃
HtmlHexadecimal
脃
Url
%E8%84%83

Code

MD5
50f6eb13d13f67364a626d177ac3ff08
Sha1
ee2f572575354283cbc9a9a9c5e66944d34fe423
Base64
6ISD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8103';
console.log(char);  // Output: 脃

Java:

char c = '\u8103';
System.out.println(c);  // Output: 脃

JSON:

{"text": "\u8103"}  // Value: 脃

Python:

char = '\u8103'
print(char)  # Output: 脃

Perl:

my $char = "\x{8103}";
print $char;  # Output: 脃

PHP:

$char = "\x{8103}";
echo $char;  // Output: 脃

Ruby:

char = "\u{8103}"
puts char  # Output: 脃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008103";  /* Display: 脃 */
}

HTML Decimal:

<p>HTML decimal: &#33027;</p>  <!-- Display: 脃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8103;</p>  <!-- Display: 脃 -->

URL Encoding:

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

Encodings

MD5:

50f6eb13d13f67364a626d177ac3ff08

SHA1:

ee2f572575354283cbc9a9a9c5e66944d34fe423

Base64:

6ISD