Unicode Finder

"腞" U+815E(CJK UNIFIED IDEOGRAPH-815E)

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

Programming

C
\u815E
JavaScript
\u815E
Java
\u815E
Json
\u815E
Python
\u815E
Perl
\x{815E}
PHP
\x{815E}
Ruby
\u{815E}
Rust
\u{815E}
Go
\u815E

Web

CSS
\00815E
HtmlDecimal
腞
HtmlHexadecimal
腞
Url
%E8%85%9E

Code

MD5
1787571b266a75de84a7bee2187f56cf
Sha1
b10db517afb1caf8444c6feb47875c26739971bb
Base64
6IWe

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u815E';
console.log(char);  // Output: 腞

Java:

char c = '\u815E';
System.out.println(c);  // Output: 腞

JSON:

{"text": "\u815E"}  // Value: 腞

Python:

char = '\u815E'
print(char)  # Output: 腞

Perl:

my $char = "\x{815E}";
print $char;  # Output: 腞

PHP:

$char = "\x{815E}";
echo $char;  // Output: 腞

Ruby:

char = "\u{815E}"
puts char  # Output: 腞

Rust:

let c = '\u{815E}';
println!("{}", c);  // Output: 腞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00815E";  /* Display: 腞 */
}

HTML Decimal:

<p>HTML decimal: &#33118;</p>  <!-- Display: 腞 -->

HTML Hexadecimal:

<p>HTML hex: &#x815E;</p>  <!-- Display: 腞 -->

URL Encoding:

// 腞 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%9E

Encodings

MD5:

1787571b266a75de84a7bee2187f56cf

SHA1:

b10db517afb1caf8444c6feb47875c26739971bb

Base64:

6IWe