Unicode Finder

"腇" U+8147(CJK UNIFIED IDEOGRAPH-8147)

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

Programming

C
\u8147
JavaScript
\u8147
Java
\u8147
Json
\u8147
Python
\u8147
Perl
\x{8147}
PHP
\x{8147}
Ruby
\u{8147}
Rust
\u{8147}
Go
\u8147

Web

CSS
\008147
HtmlDecimal
腇
HtmlHexadecimal
腇
Url
%E8%85%87

Code

MD5
161ff8e46ed33d3049520225c43f6e68
Sha1
cd10609d7248362e54e8b4ce92a1a941373e48e7
Base64
6IWH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8147';
console.log(char);  // Output: 腇

Java:

char c = '\u8147';
System.out.println(c);  // Output: 腇

JSON:

{"text": "\u8147"}  // Value: 腇

Python:

char = '\u8147'
print(char)  # Output: 腇

Perl:

my $char = "\x{8147}";
print $char;  # Output: 腇

PHP:

$char = "\x{8147}";
echo $char;  // Output: 腇

Ruby:

char = "\u{8147}"
puts char  # Output: 腇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008147";  /* Display: 腇 */
}

HTML Decimal:

<p>HTML decimal: &#33095;</p>  <!-- Display: 腇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8147;</p>  <!-- Display: 腇 -->

URL Encoding:

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

Encodings

MD5:

161ff8e46ed33d3049520225c43f6e68

SHA1:

cd10609d7248362e54e8b4ce92a1a941373e48e7

Base64:

6IWH