Unicode Finder

"腝" U+815D(CJK UNIFIED IDEOGRAPH-815D)

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

Programming

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

Web

CSS
\00815D
HtmlDecimal
腝
HtmlHexadecimal
腝
Url
%E8%85%9D

Code

MD5
52befacea19e910f2a2f5d7c2ac80d29
Sha1
99e0efc2512e95e2634c32efeab0722eb04b62c2
Base64
6IWd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u815D';
console.log(char);  // Output: 腝

Java:

char c = '\u815D';
System.out.println(c);  // Output: 腝

JSON:

{"text": "\u815D"}  // Value: 腝

Python:

char = '\u815D'
print(char)  # Output: 腝

Perl:

my $char = "\x{815D}";
print $char;  # Output: 腝

PHP:

$char = "\x{815D}";
echo $char;  // Output: 腝

Ruby:

char = "\u{815D}"
puts char  # Output: 腝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33117;</p>  <!-- Display: 腝 -->

HTML Hexadecimal:

<p>HTML hex: &#x815D;</p>  <!-- Display: 腝 -->

URL Encoding:

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

Encodings

MD5:

52befacea19e910f2a2f5d7c2ac80d29

SHA1:

99e0efc2512e95e2634c32efeab0722eb04b62c2

Base64:

6IWd