Unicode Finder

"堲" U+5832(CJK UNIFIED IDEOGRAPH-5832)

U+5832
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5832

Programming

C
\u5832
JavaScript
\u5832
Java
\u5832
Json
\u5832
Python
\u5832
Perl
\x{5832}
PHP
\x{5832}
Ruby
\u{5832}
Rust
\u{5832}
Go
\u5832

Web

CSS
\005832
HtmlDecimal
堲
HtmlHexadecimal
堲
Url
%E5%A0%B2

Code

MD5
c8e13f669739d207a58605e0f00c3c3b
Sha1
2b11723f31f557518417ae914f1bbe4382edf65b
Base64
5aCy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5832';
console.log(char);  // Output: 堲

Java:

char c = '\u5832';
System.out.println(c);  // Output: 堲

JSON:

{"text": "\u5832"}  // Value: 堲

Python:

char = '\u5832'
print(char)  # Output: 堲

Perl:

my $char = "\x{5832}";
print $char;  # Output: 堲

PHP:

$char = "\x{5832}";
echo $char;  // Output: 堲

Ruby:

char = "\u{5832}"
puts char  # Output: 堲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005832";  /* Display: 堲 */
}

HTML Decimal:

<p>HTML decimal: &#22578;</p>  <!-- Display: 堲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5832;</p>  <!-- Display: 堲 -->

URL Encoding:

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

Encodings

MD5:

c8e13f669739d207a58605e0f00c3c3b

SHA1:

2b11723f31f557518417ae914f1bbe4382edf65b

Base64:

5aCy