Unicode Finder

"墉" U+5889(CJK UNIFIED IDEOGRAPH-5889)

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

Programming

C
\u5889
JavaScript
\u5889
Java
\u5889
Json
\u5889
Python
\u5889
Perl
\x{5889}
PHP
\x{5889}
Ruby
\u{5889}
Rust
\u{5889}
Go
\u5889

Web

CSS
\005889
HtmlDecimal
墉
HtmlHexadecimal
墉
Url
%E5%A2%89

Code

MD5
3895efb97cf492334c192ef035c61c64
Sha1
01233373ffef944671de0768b177fdfcf8c3f721
Base64
5aKJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5889';
console.log(char);  // Output: 墉

Java:

char c = '\u5889';
System.out.println(c);  // Output: 墉

JSON:

{"text": "\u5889"}  // Value: 墉

Python:

char = '\u5889'
print(char)  # Output: 墉

Perl:

my $char = "\x{5889}";
print $char;  # Output: 墉

PHP:

$char = "\x{5889}";
echo $char;  // Output: 墉

Ruby:

char = "\u{5889}"
puts char  # Output: 墉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005889";  /* Display: 墉 */
}

HTML Decimal:

<p>HTML decimal: &#22665;</p>  <!-- Display: 墉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5889;</p>  <!-- Display: 墉 -->

URL Encoding:

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

Encodings

MD5:

3895efb97cf492334c192ef035c61c64

SHA1:

01233373ffef944671de0768b177fdfcf8c3f721

Base64:

5aKJ