Unicode Finder

"堭" U+582D(CJK UNIFIED IDEOGRAPH-582D)

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

Programming

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

Web

CSS
\00582D
HtmlDecimal
堭
HtmlHexadecimal
堭
Url
%E5%A0%AD

Code

MD5
73f0dfdfe472882360d7b4132f68eee8
Sha1
9a6b0d04129595eec21f11b1f5a0fae88d0eb57f
Base64
5aCt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u582D';
console.log(char);  // Output: 堭

Java:

char c = '\u582D';
System.out.println(c);  // Output: 堭

JSON:

{"text": "\u582D"}  // Value: 堭

Python:

char = '\u582D'
print(char)  # Output: 堭

Perl:

my $char = "\x{582D}";
print $char;  # Output: 堭

PHP:

$char = "\x{582D}";
echo $char;  // Output: 堭

Ruby:

char = "\u{582D}"
puts char  # Output: 堭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22573;</p>  <!-- Display: 堭 -->

HTML Hexadecimal:

<p>HTML hex: &#x582D;</p>  <!-- Display: 堭 -->

URL Encoding:

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

Encodings

MD5:

73f0dfdfe472882360d7b4132f68eee8

SHA1:

9a6b0d04129595eec21f11b1f5a0fae88d0eb57f

Base64:

5aCt