Unicode Finder

"墂" U+5882(CJK UNIFIED IDEOGRAPH-5882)

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

Programming

C
\u5882
JavaScript
\u5882
Java
\u5882
Json
\u5882
Python
\u5882
Perl
\x{5882}
PHP
\x{5882}
Ruby
\u{5882}
Rust
\u{5882}
Go
\u5882

Web

CSS
\005882
HtmlDecimal
墂
HtmlHexadecimal
墂
Url
%E5%A2%82

Code

MD5
72ebc5365f690c18a6035214758809ef
Sha1
fd6ca8438d61d4a8114b10593bc5eee21e230859
Base64
5aKC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5882';
console.log(char);  // Output: 墂

Java:

char c = '\u5882';
System.out.println(c);  // Output: 墂

JSON:

{"text": "\u5882"}  // Value: 墂

Python:

char = '\u5882'
print(char)  # Output: 墂

Perl:

my $char = "\x{5882}";
print $char;  # Output: 墂

PHP:

$char = "\x{5882}";
echo $char;  // Output: 墂

Ruby:

char = "\u{5882}"
puts char  # Output: 墂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005882";  /* Display: 墂 */
}

HTML Decimal:

<p>HTML decimal: &#22658;</p>  <!-- Display: 墂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5882;</p>  <!-- Display: 墂 -->

URL Encoding:

// 墂 URL encoding
https://unicodefinder.com/search.php?query=%E5%A2%82

Encodings

MD5:

72ebc5365f690c18a6035214758809ef

SHA1:

fd6ca8438d61d4a8114b10593bc5eee21e230859

Base64:

5aKC