Unicode Finder

"堒" U+5812(CJK UNIFIED IDEOGRAPH-5812)

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

Programming

C
\u5812
JavaScript
\u5812
Java
\u5812
Json
\u5812
Python
\u5812
Perl
\x{5812}
PHP
\x{5812}
Ruby
\u{5812}
Rust
\u{5812}
Go
\u5812

Web

CSS
\005812
HtmlDecimal
堒
HtmlHexadecimal
堒
Url
%E5%A0%92

Code

MD5
d56580fc982b25c09709c87f6f270642
Sha1
f2812573d4ccb7777a8ddea34bf9cc65d31f811b
Base64
5aCS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5812';
console.log(char);  // Output: 堒

Java:

char c = '\u5812';
System.out.println(c);  // Output: 堒

JSON:

{"text": "\u5812"}  // Value: 堒

Python:

char = '\u5812'
print(char)  # Output: 堒

Perl:

my $char = "\x{5812}";
print $char;  # Output: 堒

PHP:

$char = "\x{5812}";
echo $char;  // Output: 堒

Ruby:

char = "\u{5812}"
puts char  # Output: 堒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005812";  /* Display: 堒 */
}

HTML Decimal:

<p>HTML decimal: &#22546;</p>  <!-- Display: 堒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5812;</p>  <!-- Display: 堒 -->

URL Encoding:

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

Encodings

MD5:

d56580fc982b25c09709c87f6f270642

SHA1:

f2812573d4ccb7777a8ddea34bf9cc65d31f811b

Base64:

5aCS