Unicode Finder

"腙" U+8159(CJK UNIFIED IDEOGRAPH-8159)

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

Programming

C
\u8159
JavaScript
\u8159
Java
\u8159
Json
\u8159
Python
\u8159
Perl
\x{8159}
PHP
\x{8159}
Ruby
\u{8159}
Rust
\u{8159}
Go
\u8159

Web

CSS
\008159
HtmlDecimal
腙
HtmlHexadecimal
腙
Url
%E8%85%99

Code

MD5
4e01cf26653b481898a8f865a8c37234
Sha1
71ab4bb2d64063a747dc7d06535618286a0c7247
Base64
6IWZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8159';
console.log(char);  // Output: 腙

Java:

char c = '\u8159';
System.out.println(c);  // Output: 腙

JSON:

{"text": "\u8159"}  // Value: 腙

Python:

char = '\u8159'
print(char)  # Output: 腙

Perl:

my $char = "\x{8159}";
print $char;  # Output: 腙

PHP:

$char = "\x{8159}";
echo $char;  // Output: 腙

Ruby:

char = "\u{8159}"
puts char  # Output: 腙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008159";  /* Display: 腙 */
}

HTML Decimal:

<p>HTML decimal: &#33113;</p>  <!-- Display: 腙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8159;</p>  <!-- Display: 腙 -->

URL Encoding:

// 腙 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%99

Encodings

MD5:

4e01cf26653b481898a8f865a8c37234

SHA1:

71ab4bb2d64063a747dc7d06535618286a0c7247

Base64:

6IWZ