Unicode Finder

"堖" U+5816(CJK UNIFIED IDEOGRAPH-5816)

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

Programming

C
\u5816
JavaScript
\u5816
Java
\u5816
Json
\u5816
Python
\u5816
Perl
\x{5816}
PHP
\x{5816}
Ruby
\u{5816}
Rust
\u{5816}
Go
\u5816

Web

CSS
\005816
HtmlDecimal
堖
HtmlHexadecimal
堖
Url
%E5%A0%96

Code

MD5
4f68079c66947eb38027684d2ec88f60
Sha1
2338b1eb7e294342d9ec7f6d42a6d2db191e96ad
Base64
5aCW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5816';
console.log(char);  // Output: 堖

Java:

char c = '\u5816';
System.out.println(c);  // Output: 堖

JSON:

{"text": "\u5816"}  // Value: 堖

Python:

char = '\u5816'
print(char)  # Output: 堖

Perl:

my $char = "\x{5816}";
print $char;  # Output: 堖

PHP:

$char = "\x{5816}";
echo $char;  // Output: 堖

Ruby:

char = "\u{5816}"
puts char  # Output: 堖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005816";  /* Display: 堖 */
}

HTML Decimal:

<p>HTML decimal: &#22550;</p>  <!-- Display: 堖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5816;</p>  <!-- Display: 堖 -->

URL Encoding:

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

Encodings

MD5:

4f68079c66947eb38027684d2ec88f60

SHA1:

2338b1eb7e294342d9ec7f6d42a6d2db191e96ad

Base64:

5aCW