Unicode Finder

"購" U+8CFC(CJK UNIFIED IDEOGRAPH-8CFC)

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

Programming

C
\u8CFC
JavaScript
\u8CFC
Java
\u8CFC
Json
\u8CFC
Python
\u8CFC
Perl
\x{8CFC}
PHP
\x{8CFC}
Ruby
\u{8CFC}
Rust
\u{8CFC}
Go
\u8CFC

Web

CSS
\008CFC
HtmlDecimal
購
HtmlHexadecimal
購
Url
%E8%B3%BC

Code

MD5
8d8906cf246eabb4c071a9bf83c6fef5
Sha1
cbb31dc0aff47c19afc40b1bc7f088cb45e9af5f
Base64
6LO8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8CFC';
console.log(char);  // Output: 購

Java:

char c = '\u8CFC';
System.out.println(c);  // Output: 購

JSON:

{"text": "\u8CFC"}  // Value: 購

Python:

char = '\u8CFC'
print(char)  # Output: 購

Perl:

my $char = "\x{8CFC}";
print $char;  # Output: 購

PHP:

$char = "\x{8CFC}";
echo $char;  // Output: 購

Ruby:

char = "\u{8CFC}"
puts char  # Output: 購

Rust:

let c = '\u{8CFC}';
println!("{}", c);  // Output: 購

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008CFC";  /* Display: 購 */
}

HTML Decimal:

<p>HTML decimal: &#36092;</p>  <!-- Display: 購 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CFC;</p>  <!-- Display: 購 -->

URL Encoding:

// 購 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%BC

Encodings

MD5:

8d8906cf246eabb4c071a9bf83c6fef5

SHA1:

cbb31dc0aff47c19afc40b1bc7f088cb45e9af5f

Base64:

6LO8