Unicode Finder

"倨" U+5028(CJK UNIFIED IDEOGRAPH-5028)

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

Programming

C
\u5028
JavaScript
\u5028
Java
\u5028
Json
\u5028
Python
\u5028
Perl
\x{5028}
PHP
\x{5028}
Ruby
\u{5028}
Rust
\u{5028}
Go
\u5028

Web

CSS
\005028
HtmlDecimal
倨
HtmlHexadecimal
倨
Url
%E5%80%A8

Code

MD5
f22a4168678ce9040e7739d24e3558d1
Sha1
cec089e767d89da6d29301c8eb1fec618c238835
Base64
5YCo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5028';
console.log(char);  // Output: 倨

Java:

char c = '\u5028';
System.out.println(c);  // Output: 倨

JSON:

{"text": "\u5028"}  // Value: 倨

Python:

char = '\u5028'
print(char)  # Output: 倨

Perl:

my $char = "\x{5028}";
print $char;  # Output: 倨

PHP:

$char = "\x{5028}";
echo $char;  // Output: 倨

Ruby:

char = "\u{5028}"
puts char  # Output: 倨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005028";  /* Display: 倨 */
}

HTML Decimal:

<p>HTML decimal: &#20520;</p>  <!-- Display: 倨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5028;</p>  <!-- Display: 倨 -->

URL Encoding:

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

Encodings

MD5:

f22a4168678ce9040e7739d24e3558d1

SHA1:

cec089e767d89da6d29301c8eb1fec618c238835

Base64:

5YCo