Unicode Finder

"背" U+80CC(CJK UNIFIED IDEOGRAPH-80CC)

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

Programming

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

Web

CSS
\0080CC
HtmlDecimal
背
HtmlHexadecimal
背
Url
%E8%83%8C

Code

MD5
a6d9108337c6a1f9f257896b287448a1
Sha1
e072ffdd2a7913fc8675dae802b86004e70cef05
Base64
6IOM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u80CC';
console.log(char);  // Output: 背

Java:

char c = '\u80CC';
System.out.println(c);  // Output: 背

JSON:

{"text": "\u80CC"}  // Value: 背

Python:

char = '\u80CC'
print(char)  # Output: 背

Perl:

my $char = "\x{80CC}";
print $char;  # Output: 背

PHP:

$char = "\x{80CC}";
echo $char;  // Output: 背

Ruby:

char = "\u{80CC}"
puts char  # Output: 背

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32972;</p>  <!-- Display: 背 -->

HTML Hexadecimal:

<p>HTML hex: &#x80CC;</p>  <!-- Display: 背 -->

URL Encoding:

// 背 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%8C

Encodings

MD5:

a6d9108337c6a1f9f257896b287448a1

SHA1:

e072ffdd2a7913fc8675dae802b86004e70cef05

Base64:

6IOM