Unicode Finder

"堦" U+5826(CJK UNIFIED IDEOGRAPH-5826)

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

Programming

C
\u5826
JavaScript
\u5826
Java
\u5826
Json
\u5826
Python
\u5826
Perl
\x{5826}
PHP
\x{5826}
Ruby
\u{5826}
Rust
\u{5826}
Go
\u5826

Web

CSS
\005826
HtmlDecimal
堦
HtmlHexadecimal
堦
Url
%E5%A0%A6

Code

MD5
c9ef3c770814e9a78a8f183df9589ff7
Sha1
754646928c1985537741d2d167e87055111151d0
Base64
5aCm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5826';
console.log(char);  // Output: 堦

Java:

char c = '\u5826';
System.out.println(c);  // Output: 堦

JSON:

{"text": "\u5826"}  // Value: 堦

Python:

char = '\u5826'
print(char)  # Output: 堦

Perl:

my $char = "\x{5826}";
print $char;  # Output: 堦

PHP:

$char = "\x{5826}";
echo $char;  // Output: 堦

Ruby:

char = "\u{5826}"
puts char  # Output: 堦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005826";  /* Display: 堦 */
}

HTML Decimal:

<p>HTML decimal: &#22566;</p>  <!-- Display: 堦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5826;</p>  <!-- Display: 堦 -->

URL Encoding:

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

Encodings

MD5:

c9ef3c770814e9a78a8f183df9589ff7

SHA1:

754646928c1985537741d2d167e87055111151d0

Base64:

5aCm