Unicode Finder

"腲" U+8172(CJK UNIFIED IDEOGRAPH-8172)

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

Programming

C
\u8172
JavaScript
\u8172
Java
\u8172
Json
\u8172
Python
\u8172
Perl
\x{8172}
PHP
\x{8172}
Ruby
\u{8172}
Rust
\u{8172}
Go
\u8172

Web

CSS
\008172
HtmlDecimal
腲
HtmlHexadecimal
腲
Url
%E8%85%B2

Code

MD5
8f51e01a6245dbeb66f74cd5045e898a
Sha1
4a097b5595fb6e20184001894a1b3985f0f11d03
Base64
6IWy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8172';
console.log(char);  // Output: 腲

Java:

char c = '\u8172';
System.out.println(c);  // Output: 腲

JSON:

{"text": "\u8172"}  // Value: 腲

Python:

char = '\u8172'
print(char)  # Output: 腲

Perl:

my $char = "\x{8172}";
print $char;  # Output: 腲

PHP:

$char = "\x{8172}";
echo $char;  // Output: 腲

Ruby:

char = "\u{8172}"
puts char  # Output: 腲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008172";  /* Display: 腲 */
}

HTML Decimal:

<p>HTML decimal: &#33138;</p>  <!-- Display: 腲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8172;</p>  <!-- Display: 腲 -->

URL Encoding:

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

Encodings

MD5:

8f51e01a6245dbeb66f74cd5045e898a

SHA1:

4a097b5595fb6e20184001894a1b3985f0f11d03

Base64:

6IWy