Unicode Finder

"墀" U+5880(CJK UNIFIED IDEOGRAPH-5880)

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

Programming

C
\u5880
JavaScript
\u5880
Java
\u5880
Json
\u5880
Python
\u5880
Perl
\x{5880}
PHP
\x{5880}
Ruby
\u{5880}
Rust
\u{5880}
Go
\u5880

Web

CSS
\005880
HtmlDecimal
墀
HtmlHexadecimal
墀
Url
%E5%A2%80

Code

MD5
bb925aa10bc67945e31f4f466b99bebc
Sha1
ea981942f68f4448599eb90da179f3fd977a0e36
Base64
5aKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5880';
console.log(char);  // Output: 墀

Java:

char c = '\u5880';
System.out.println(c);  // Output: 墀

JSON:

{"text": "\u5880"}  // Value: 墀

Python:

char = '\u5880'
print(char)  # Output: 墀

Perl:

my $char = "\x{5880}";
print $char;  # Output: 墀

PHP:

$char = "\x{5880}";
echo $char;  // Output: 墀

Ruby:

char = "\u{5880}"
puts char  # Output: 墀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005880";  /* Display: 墀 */
}

HTML Decimal:

<p>HTML decimal: &#22656;</p>  <!-- Display: 墀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5880;</p>  <!-- Display: 墀 -->

URL Encoding:

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

Encodings

MD5:

bb925aa10bc67945e31f4f466b99bebc

SHA1:

ea981942f68f4448599eb90da179f3fd977a0e36

Base64:

5aKA