Unicode Finder

"宫" U+5BAB(CJK UNIFIED IDEOGRAPH-5BAB)

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

Programming

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

Web

CSS
\005BAB
HtmlDecimal
宫
HtmlHexadecimal
宫
Url
%E5%AE%AB

Code

MD5
60f80495bc9870a56fc09961751d771d
Sha1
0407383e00c8fa0bd6fb214959a2ea73845df122
Base64
5a6r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BAB';
console.log(char);  // Output: 宫

Java:

char c = '\u5BAB';
System.out.println(c);  // Output: 宫

JSON:

{"text": "\u5BAB"}  // Value: 宫

Python:

char = '\u5BAB'
print(char)  # Output: 宫

Perl:

my $char = "\x{5BAB}";
print $char;  # Output: 宫

PHP:

$char = "\x{5BAB}";
echo $char;  // Output: 宫

Ruby:

char = "\u{5BAB}"
puts char  # Output: 宫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23467;</p>  <!-- Display: 宫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BAB;</p>  <!-- Display: 宫 -->

URL Encoding:

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

Encodings

MD5:

60f80495bc9870a56fc09961751d771d

SHA1:

0407383e00c8fa0bd6fb214959a2ea73845df122

Base64:

5a6r