Unicode Finder

"腱" U+8171(CJK UNIFIED IDEOGRAPH-8171)

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

Programming

C
\u8171
JavaScript
\u8171
Java
\u8171
Json
\u8171
Python
\u8171
Perl
\x{8171}
PHP
\x{8171}
Ruby
\u{8171}
Rust
\u{8171}
Go
\u8171

Web

CSS
\008171
HtmlDecimal
腱
HtmlHexadecimal
腱
Url
%E8%85%B1

Code

MD5
04866d24536845d360c3034c2910fd9e
Sha1
ca943a0b4b6ed1d26f877cc4ef8cdde8aa9a929b
Base64
6IWx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8171';
console.log(char);  // Output: 腱

Java:

char c = '\u8171';
System.out.println(c);  // Output: 腱

JSON:

{"text": "\u8171"}  // Value: 腱

Python:

char = '\u8171'
print(char)  # Output: 腱

Perl:

my $char = "\x{8171}";
print $char;  # Output: 腱

PHP:

$char = "\x{8171}";
echo $char;  // Output: 腱

Ruby:

char = "\u{8171}"
puts char  # Output: 腱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008171";  /* Display: 腱 */
}

HTML Decimal:

<p>HTML decimal: &#33137;</p>  <!-- Display: 腱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8171;</p>  <!-- Display: 腱 -->

URL Encoding:

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

Encodings

MD5:

04866d24536845d360c3034c2910fd9e

SHA1:

ca943a0b4b6ed1d26f877cc4ef8cdde8aa9a929b

Base64:

6IWx