Unicode Finder

"胖" U+80D6(CJK UNIFIED IDEOGRAPH-80D6)

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

Programming

C
\u80D6
JavaScript
\u80D6
Java
\u80D6
Json
\u80D6
Python
\u80D6
Perl
\x{80D6}
PHP
\x{80D6}
Ruby
\u{80D6}
Rust
\u{80D6}
Go
\u80D6

Web

CSS
\0080D6
HtmlDecimal
胖
HtmlHexadecimal
胖
Url
%E8%83%96

Code

MD5
2200ae7c8087c1ff9147b4de4da82b70
Sha1
9cae6363156a322a565087566201e681fd4839b9
Base64
6IOW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u80D6';
console.log(char);  // Output: 胖

Java:

char c = '\u80D6';
System.out.println(c);  // Output: 胖

JSON:

{"text": "\u80D6"}  // Value: 胖

Python:

char = '\u80D6'
print(char)  # Output: 胖

Perl:

my $char = "\x{80D6}";
print $char;  # Output: 胖

PHP:

$char = "\x{80D6}";
echo $char;  // Output: 胖

Ruby:

char = "\u{80D6}"
puts char  # Output: 胖

Rust:

let c = '\u{80D6}';
println!("{}", c);  // Output: 胖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0080D6";  /* Display: 胖 */
}

HTML Decimal:

<p>HTML decimal: &#32982;</p>  <!-- Display: 胖 -->

HTML Hexadecimal:

<p>HTML hex: &#x80D6;</p>  <!-- Display: 胖 -->

URL Encoding:

// 胖 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%96

Encodings

MD5:

2200ae7c8087c1ff9147b4de4da82b70

SHA1:

9cae6363156a322a565087566201e681fd4839b9

Base64:

6IOW