Unicode Finder

"堠" U+5820(CJK UNIFIED IDEOGRAPH-5820)

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

Programming

C
\u5820
JavaScript
\u5820
Java
\u5820
Json
\u5820
Python
\u5820
Perl
\x{5820}
PHP
\x{5820}
Ruby
\u{5820}
Rust
\u{5820}
Go
\u5820

Web

CSS
\005820
HtmlDecimal
堠
HtmlHexadecimal
堠
Url
%E5%A0%A0

Code

MD5
eab68593a86f49cf9f97cb3079fc54d9
Sha1
761ca44608c563bbb753e40482d8cb637cf03397
Base64
5aCg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5820';
console.log(char);  // Output: 堠

Java:

char c = '\u5820';
System.out.println(c);  // Output: 堠

JSON:

{"text": "\u5820"}  // Value: 堠

Python:

char = '\u5820'
print(char)  # Output: 堠

Perl:

my $char = "\x{5820}";
print $char;  # Output: 堠

PHP:

$char = "\x{5820}";
echo $char;  // Output: 堠

Ruby:

char = "\u{5820}"
puts char  # Output: 堠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005820";  /* Display: 堠 */
}

HTML Decimal:

<p>HTML decimal: &#22560;</p>  <!-- Display: 堠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5820;</p>  <!-- Display: 堠 -->

URL Encoding:

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

Encodings

MD5:

eab68593a86f49cf9f97cb3079fc54d9

SHA1:

761ca44608c563bbb753e40482d8cb637cf03397

Base64:

5aCg