Unicode Finder

"腘" U+8158(CJK UNIFIED IDEOGRAPH-8158)

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

Programming

C
\u8158
JavaScript
\u8158
Java
\u8158
Json
\u8158
Python
\u8158
Perl
\x{8158}
PHP
\x{8158}
Ruby
\u{8158}
Rust
\u{8158}
Go
\u8158

Web

CSS
\008158
HtmlDecimal
腘
HtmlHexadecimal
腘
Url
%E8%85%98

Code

MD5
5071c84dce61821a4f330f53cc2c06b5
Sha1
8200c78d1ffa85bd1717ac3d51ff964fde2f6a6a
Base64
6IWY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8158';
console.log(char);  // Output: 腘

Java:

char c = '\u8158';
System.out.println(c);  // Output: 腘

JSON:

{"text": "\u8158"}  // Value: 腘

Python:

char = '\u8158'
print(char)  # Output: 腘

Perl:

my $char = "\x{8158}";
print $char;  # Output: 腘

PHP:

$char = "\x{8158}";
echo $char;  // Output: 腘

Ruby:

char = "\u{8158}"
puts char  # Output: 腘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008158";  /* Display: 腘 */
}

HTML Decimal:

<p>HTML decimal: &#33112;</p>  <!-- Display: 腘 -->

HTML Hexadecimal:

<p>HTML hex: &#x8158;</p>  <!-- Display: 腘 -->

URL Encoding:

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

Encodings

MD5:

5071c84dce61821a4f330f53cc2c06b5

SHA1:

8200c78d1ffa85bd1717ac3d51ff964fde2f6a6a

Base64:

6IWY