Unicode Finder

"塂" U+5842(CJK UNIFIED IDEOGRAPH-5842)

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

Programming

C
\u5842
JavaScript
\u5842
Java
\u5842
Json
\u5842
Python
\u5842
Perl
\x{5842}
PHP
\x{5842}
Ruby
\u{5842}
Rust
\u{5842}
Go
\u5842

Web

CSS
\005842
HtmlDecimal
塂
HtmlHexadecimal
塂
Url
%E5%A1%82

Code

MD5
abdf42b4355108ffe70ec19760ca0cf5
Sha1
dbd5c88281f2d8b49165c5f4b27f4e0b1ccab1f5
Base64
5aGC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5842';
console.log(char);  // Output: 塂

Java:

char c = '\u5842';
System.out.println(c);  // Output: 塂

JSON:

{"text": "\u5842"}  // Value: 塂

Python:

char = '\u5842'
print(char)  # Output: 塂

Perl:

my $char = "\x{5842}";
print $char;  # Output: 塂

PHP:

$char = "\x{5842}";
echo $char;  // Output: 塂

Ruby:

char = "\u{5842}"
puts char  # Output: 塂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005842";  /* Display: 塂 */
}

HTML Decimal:

<p>HTML decimal: &#22594;</p>  <!-- Display: 塂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5842;</p>  <!-- Display: 塂 -->

URL Encoding:

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

Encodings

MD5:

abdf42b4355108ffe70ec19760ca0cf5

SHA1:

dbd5c88281f2d8b49165c5f4b27f4e0b1ccab1f5

Base64:

5aGC