Unicode Finder

"堶" U+5836(CJK UNIFIED IDEOGRAPH-5836)

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

Programming

C
\u5836
JavaScript
\u5836
Java
\u5836
Json
\u5836
Python
\u5836
Perl
\x{5836}
PHP
\x{5836}
Ruby
\u{5836}
Rust
\u{5836}
Go
\u5836

Web

CSS
\005836
HtmlDecimal
堶
HtmlHexadecimal
堶
Url
%E5%A0%B6

Code

MD5
e4a6f909425eadf0d83e1660a8866add
Sha1
e67d5056d1e4593ca7e69be914fe9e105dcf977f
Base64
5aC2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5836';
console.log(char);  // Output: 堶

Java:

char c = '\u5836';
System.out.println(c);  // Output: 堶

JSON:

{"text": "\u5836"}  // Value: 堶

Python:

char = '\u5836'
print(char)  # Output: 堶

Perl:

my $char = "\x{5836}";
print $char;  # Output: 堶

PHP:

$char = "\x{5836}";
echo $char;  // Output: 堶

Ruby:

char = "\u{5836}"
puts char  # Output: 堶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005836";  /* Display: 堶 */
}

HTML Decimal:

<p>HTML decimal: &#22582;</p>  <!-- Display: 堶 -->

HTML Hexadecimal:

<p>HTML hex: &#x5836;</p>  <!-- Display: 堶 -->

URL Encoding:

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

Encodings

MD5:

e4a6f909425eadf0d83e1660a8866add

SHA1:

e67d5056d1e4593ca7e69be914fe9e105dcf977f

Base64:

5aC2