Unicode Finder

"墆" U+5886(CJK UNIFIED IDEOGRAPH-5886)

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

Programming

C
\u5886
JavaScript
\u5886
Java
\u5886
Json
\u5886
Python
\u5886
Perl
\x{5886}
PHP
\x{5886}
Ruby
\u{5886}
Rust
\u{5886}
Go
\u5886

Web

CSS
\005886
HtmlDecimal
墆
HtmlHexadecimal
墆
Url
%E5%A2%86

Code

MD5
1cbbb2fcf58fe7140b86280890a9ac84
Sha1
3df614cc2d4669f8fc61678553dd95ba998df8fa
Base64
5aKG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5886';
console.log(char);  // Output: 墆

Java:

char c = '\u5886';
System.out.println(c);  // Output: 墆

JSON:

{"text": "\u5886"}  // Value: 墆

Python:

char = '\u5886'
print(char)  # Output: 墆

Perl:

my $char = "\x{5886}";
print $char;  # Output: 墆

PHP:

$char = "\x{5886}";
echo $char;  // Output: 墆

Ruby:

char = "\u{5886}"
puts char  # Output: 墆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005886";  /* Display: 墆 */
}

HTML Decimal:

<p>HTML decimal: &#22662;</p>  <!-- Display: 墆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5886;</p>  <!-- Display: 墆 -->

URL Encoding:

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

Encodings

MD5:

1cbbb2fcf58fe7140b86280890a9ac84

SHA1:

3df614cc2d4669f8fc61678553dd95ba998df8fa

Base64:

5aKG