Unicode Finder

"倱" U+5031(CJK UNIFIED IDEOGRAPH-5031)

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

Programming

C
\u5031
JavaScript
\u5031
Java
\u5031
Json
\u5031
Python
\u5031
Perl
\x{5031}
PHP
\x{5031}
Ruby
\u{5031}
Rust
\u{5031}
Go
\u5031

Web

CSS
\005031
HtmlDecimal
倱
HtmlHexadecimal
倱
Url
%E5%80%B1

Code

MD5
44099139da25427e47892db97c93dda0
Sha1
be9e1b6d9ecf6e1b31adec9cca9c42d10b632c69
Base64
5YCx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5031';
console.log(char);  // Output: 倱

Java:

char c = '\u5031';
System.out.println(c);  // Output: 倱

JSON:

{"text": "\u5031"}  // Value: 倱

Python:

char = '\u5031'
print(char)  # Output: 倱

Perl:

my $char = "\x{5031}";
print $char;  # Output: 倱

PHP:

$char = "\x{5031}";
echo $char;  // Output: 倱

Ruby:

char = "\u{5031}"
puts char  # Output: 倱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005031";  /* Display: 倱 */
}

HTML Decimal:

<p>HTML decimal: &#20529;</p>  <!-- Display: 倱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5031;</p>  <!-- Display: 倱 -->

URL Encoding:

// 倱 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%B1

Encodings

MD5:

44099139da25427e47892db97c93dda0

SHA1:

be9e1b6d9ecf6e1b31adec9cca9c42d10b632c69

Base64:

5YCx