Unicode Finder

"塄" U+5844(CJK UNIFIED IDEOGRAPH-5844)

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

Programming

C
\u5844
JavaScript
\u5844
Java
\u5844
Json
\u5844
Python
\u5844
Perl
\x{5844}
PHP
\x{5844}
Ruby
\u{5844}
Rust
\u{5844}
Go
\u5844

Web

CSS
\005844
HtmlDecimal
塄
HtmlHexadecimal
塄
Url
%E5%A1%84

Code

MD5
a1d6a1db3acdfa594b263b89cdfcdc0c
Sha1
9dc3fcaf966708e22e75f4a39e4471ac057e5848
Base64
5aGE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5844';
console.log(char);  // Output: 塄

Java:

char c = '\u5844';
System.out.println(c);  // Output: 塄

JSON:

{"text": "\u5844"}  // Value: 塄

Python:

char = '\u5844'
print(char)  # Output: 塄

Perl:

my $char = "\x{5844}";
print $char;  # Output: 塄

PHP:

$char = "\x{5844}";
echo $char;  // Output: 塄

Ruby:

char = "\u{5844}"
puts char  # Output: 塄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005844";  /* Display: 塄 */
}

HTML Decimal:

<p>HTML decimal: &#22596;</p>  <!-- Display: 塄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5844;</p>  <!-- Display: 塄 -->

URL Encoding:

// 塄 URL encoding
https://unicodefinder.com/search.php?query=%E5%A1%84

Encodings

MD5:

a1d6a1db3acdfa594b263b89cdfcdc0c

SHA1:

9dc3fcaf966708e22e75f4a39e4471ac057e5848

Base64:

5aGE