Unicode Finder

"宐" U+5B90(CJK UNIFIED IDEOGRAPH-5B90)

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

Programming

C
\u5B90
JavaScript
\u5B90
Java
\u5B90
Json
\u5B90
Python
\u5B90
Perl
\x{5B90}
PHP
\x{5B90}
Ruby
\u{5B90}
Rust
\u{5B90}
Go
\u5B90

Web

CSS
\005B90
HtmlDecimal
宐
HtmlHexadecimal
宐
Url
%E5%AE%90

Code

MD5
deea7e2b8e9dd7473abdc0f6598c6bfc
Sha1
0a2f88981f31f6835fb645987ceb244012b5d70b
Base64
5a6Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B90';
console.log(char);  // Output: 宐

Java:

char c = '\u5B90';
System.out.println(c);  // Output: 宐

JSON:

{"text": "\u5B90"}  // Value: 宐

Python:

char = '\u5B90'
print(char)  # Output: 宐

Perl:

my $char = "\x{5B90}";
print $char;  # Output: 宐

PHP:

$char = "\x{5B90}";
echo $char;  // Output: 宐

Ruby:

char = "\u{5B90}"
puts char  # Output: 宐

Rust:

let c = '\u{5B90}';
println!("{}", c);  // Output: 宐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005B90";  /* Display: 宐 */
}

HTML Decimal:

<p>HTML decimal: &#23440;</p>  <!-- Display: 宐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B90;</p>  <!-- Display: 宐 -->

URL Encoding:

// 宐 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%90

Encodings

MD5:

deea7e2b8e9dd7473abdc0f6598c6bfc

SHA1:

0a2f88981f31f6835fb645987ceb244012b5d70b

Base64:

5a6Q