Unicode Finder

"堙" U+5819(CJK UNIFIED IDEOGRAPH-5819)

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

Programming

C
\u5819
JavaScript
\u5819
Java
\u5819
Json
\u5819
Python
\u5819
Perl
\x{5819}
PHP
\x{5819}
Ruby
\u{5819}
Rust
\u{5819}
Go
\u5819

Web

CSS
\005819
HtmlDecimal
堙
HtmlHexadecimal
堙
Url
%E5%A0%99

Code

MD5
808b2e52a93def3eeea8e11b81576a86
Sha1
02efd35dd73a379ab2f148228149cf399c0570a7
Base64
5aCZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5819';
console.log(char);  // Output: 堙

Java:

char c = '\u5819';
System.out.println(c);  // Output: 堙

JSON:

{"text": "\u5819"}  // Value: 堙

Python:

char = '\u5819'
print(char)  # Output: 堙

Perl:

my $char = "\x{5819}";
print $char;  # Output: 堙

PHP:

$char = "\x{5819}";
echo $char;  // Output: 堙

Ruby:

char = "\u{5819}"
puts char  # Output: 堙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005819";  /* Display: 堙 */
}

HTML Decimal:

<p>HTML decimal: &#22553;</p>  <!-- Display: 堙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5819;</p>  <!-- Display: 堙 -->

URL Encoding:

// 堙 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%99

Encodings

MD5:

808b2e52a93def3eeea8e11b81576a86

SHA1:

02efd35dd73a379ab2f148228149cf399c0570a7

Base64:

5aCZ