Unicode Finder

"宾" U+5BBE(CJK UNIFIED IDEOGRAPH-5BBE)

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

Programming

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

Web

CSS
\005BBE
HtmlDecimal
宾
HtmlHexadecimal
宾
Url
%E5%AE%BE

Code

MD5
46938b2584bbf260e7b95b6ee01c0b17
Sha1
8732fb12a27c7db9a66c0246209135fce4d3cd5e
Base64
5a6+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BBE';
console.log(char);  // Output: 宾

Java:

char c = '\u5BBE';
System.out.println(c);  // Output: 宾

JSON:

{"text": "\u5BBE"}  // Value: 宾

Python:

char = '\u5BBE'
print(char)  # Output: 宾

Perl:

my $char = "\x{5BBE}";
print $char;  # Output: 宾

PHP:

$char = "\x{5BBE}";
echo $char;  // Output: 宾

Ruby:

char = "\u{5BBE}"
puts char  # Output: 宾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23486;</p>  <!-- Display: 宾 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BBE;</p>  <!-- Display: 宾 -->

URL Encoding:

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

Encodings

MD5:

46938b2584bbf260e7b95b6ee01c0b17

SHA1:

8732fb12a27c7db9a66c0246209135fce4d3cd5e

Base64:

5a6+