Unicode Finder

"塣" U+5863(CJK UNIFIED IDEOGRAPH-5863)

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

Programming

C
\u5863
JavaScript
\u5863
Java
\u5863
Json
\u5863
Python
\u5863
Perl
\x{5863}
PHP
\x{5863}
Ruby
\u{5863}
Rust
\u{5863}
Go
\u5863

Web

CSS
\005863
HtmlDecimal
塣
HtmlHexadecimal
塣
Url
%E5%A1%A3

Code

MD5
8d20b561314f717bd41b6298afb0e1b5
Sha1
ece5f4ccb396ccb62af908dcb81d7abf4158ff1c
Base64
5aGj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5863';
console.log(char);  // Output: 塣

Java:

char c = '\u5863';
System.out.println(c);  // Output: 塣

JSON:

{"text": "\u5863"}  // Value: 塣

Python:

char = '\u5863'
print(char)  # Output: 塣

Perl:

my $char = "\x{5863}";
print $char;  # Output: 塣

PHP:

$char = "\x{5863}";
echo $char;  // Output: 塣

Ruby:

char = "\u{5863}"
puts char  # Output: 塣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005863";  /* Display: 塣 */
}

HTML Decimal:

<p>HTML decimal: &#22627;</p>  <!-- Display: 塣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5863;</p>  <!-- Display: 塣 -->

URL Encoding:

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

Encodings

MD5:

8d20b561314f717bd41b6298afb0e1b5

SHA1:

ece5f4ccb396ccb62af908dcb81d7abf4158ff1c

Base64:

5aGj