Unicode Finder

"堝" U+581D(CJK UNIFIED IDEOGRAPH-581D)

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

Programming

C
\u581D
JavaScript
\u581D
Java
\u581D
Json
\u581D
Python
\u581D
Perl
\x{581D}
PHP
\x{581D}
Ruby
\u{581D}
Rust
\u{581D}
Go
\u581D

Web

CSS
\00581D
HtmlDecimal
堝
HtmlHexadecimal
堝
Url
%E5%A0%9D

Code

MD5
8c847a79f5e889cdde0d1d85ae2f4c92
Sha1
2b906fac3bf8b562205d2eced69fad0f4ecb530a
Base64
5aCd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u581D';
console.log(char);  // Output: 堝

Java:

char c = '\u581D';
System.out.println(c);  // Output: 堝

JSON:

{"text": "\u581D"}  // Value: 堝

Python:

char = '\u581D'
print(char)  # Output: 堝

Perl:

my $char = "\x{581D}";
print $char;  # Output: 堝

PHP:

$char = "\x{581D}";
echo $char;  // Output: 堝

Ruby:

char = "\u{581D}"
puts char  # Output: 堝

Rust:

let c = '\u{581D}';
println!("{}", c);  // Output: 堝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00581D";  /* Display: 堝 */
}

HTML Decimal:

<p>HTML decimal: &#22557;</p>  <!-- Display: 堝 -->

HTML Hexadecimal:

<p>HTML hex: &#x581D;</p>  <!-- Display: 堝 -->

URL Encoding:

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

Encodings

MD5:

8c847a79f5e889cdde0d1d85ae2f4c92

SHA1:

2b906fac3bf8b562205d2eced69fad0f4ecb530a

Base64:

5aCd