Unicode Finder

"宺" U+5BBA(CJK UNIFIED IDEOGRAPH-5BBA)

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

Programming

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

Web

CSS
\005BBA
HtmlDecimal
宺
HtmlHexadecimal
宺
Url
%E5%AE%BA

Code

MD5
32fb00e8bba0d9af494962b4e5166118
Sha1
ffa5d53f742961e37223bc0b5ee9e859eed2b105
Base64
5a66

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BBA';
console.log(char);  // Output: 宺

Java:

char c = '\u5BBA';
System.out.println(c);  // Output: 宺

JSON:

{"text": "\u5BBA"}  // Value: 宺

Python:

char = '\u5BBA'
print(char)  # Output: 宺

Perl:

my $char = "\x{5BBA}";
print $char;  # Output: 宺

PHP:

$char = "\x{5BBA}";
echo $char;  // Output: 宺

Ruby:

char = "\u{5BBA}"
puts char  # Output: 宺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23482;</p>  <!-- Display: 宺 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BBA;</p>  <!-- Display: 宺 -->

URL Encoding:

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

Encodings

MD5:

32fb00e8bba0d9af494962b4e5166118

SHA1:

ffa5d53f742961e37223bc0b5ee9e859eed2b105

Base64:

5a66