Unicode Finder

"宵" U+5BB5(CJK UNIFIED IDEOGRAPH-5BB5)

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

Programming

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

Web

CSS
\005BB5
HtmlDecimal
宵
HtmlHexadecimal
宵
Url
%E5%AE%B5

Code

MD5
a54899af01929f8db0167fcac5d32eaa
Sha1
3702291966868c02104d41b5dc721ef388c5342d
Base64
5a61

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BB5';
console.log(char);  // Output: 宵

Java:

char c = '\u5BB5';
System.out.println(c);  // Output: 宵

JSON:

{"text": "\u5BB5"}  // Value: 宵

Python:

char = '\u5BB5'
print(char)  # Output: 宵

Perl:

my $char = "\x{5BB5}";
print $char;  # Output: 宵

PHP:

$char = "\x{5BB5}";
echo $char;  // Output: 宵

Ruby:

char = "\u{5BB5}"
puts char  # Output: 宵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23477;</p>  <!-- Display: 宵 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BB5;</p>  <!-- Display: 宵 -->

URL Encoding:

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

Encodings

MD5:

a54899af01929f8db0167fcac5d32eaa

SHA1:

3702291966868c02104d41b5dc721ef388c5342d

Base64:

5a61