Unicode Finder

"宱" U+5BB1(CJK UNIFIED IDEOGRAPH-5BB1)

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

Programming

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

Web

CSS
\005BB1
HtmlDecimal
宱
HtmlHexadecimal
宱
Url
%E5%AE%B1

Code

MD5
24b18f0fdc2be8b993137cd6c036007e
Sha1
b8700d66796793f9e3e628814488eeb084b7f2df
Base64
5a6x

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BB1';
console.log(char);  // Output: 宱

Java:

char c = '\u5BB1';
System.out.println(c);  // Output: 宱

JSON:

{"text": "\u5BB1"}  // Value: 宱

Python:

char = '\u5BB1'
print(char)  # Output: 宱

Perl:

my $char = "\x{5BB1}";
print $char;  # Output: 宱

PHP:

$char = "\x{5BB1}";
echo $char;  // Output: 宱

Ruby:

char = "\u{5BB1}"
puts char  # Output: 宱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23473;</p>  <!-- Display: 宱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BB1;</p>  <!-- Display: 宱 -->

URL Encoding:

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

Encodings

MD5:

24b18f0fdc2be8b993137cd6c036007e

SHA1:

b8700d66796793f9e3e628814488eeb084b7f2df

Base64:

5a6x