Unicode Finder

"腮" U+816E(CJK UNIFIED IDEOGRAPH-816E)

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

Programming

C
\u816E
JavaScript
\u816E
Java
\u816E
Json
\u816E
Python
\u816E
Perl
\x{816E}
PHP
\x{816E}
Ruby
\u{816E}
Rust
\u{816E}
Go
\u816E

Web

CSS
\00816E
HtmlDecimal
腮
HtmlHexadecimal
腮
Url
%E8%85%AE

Code

MD5
e2be456d8f4292081d1700d3336f7534
Sha1
ffd31cb93e09d0ee6e4a9cf275916fcee15c5676
Base64
6IWu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u816E';
console.log(char);  // Output: 腮

Java:

char c = '\u816E';
System.out.println(c);  // Output: 腮

JSON:

{"text": "\u816E"}  // Value: 腮

Python:

char = '\u816E'
print(char)  # Output: 腮

Perl:

my $char = "\x{816E}";
print $char;  # Output: 腮

PHP:

$char = "\x{816E}";
echo $char;  // Output: 腮

Ruby:

char = "\u{816E}"
puts char  # Output: 腮

Rust:

let c = '\u{816E}';
println!("{}", c);  // Output: 腮

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00816E";  /* Display: 腮 */
}

HTML Decimal:

<p>HTML decimal: &#33134;</p>  <!-- Display: 腮 -->

HTML Hexadecimal:

<p>HTML hex: &#x816E;</p>  <!-- Display: 腮 -->

URL Encoding:

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

Encodings

MD5:

e2be456d8f4292081d1700d3336f7534

SHA1:

ffd31cb93e09d0ee6e4a9cf275916fcee15c5676

Base64:

6IWu