Unicode Finder

"宦" U+5BA6(CJK UNIFIED IDEOGRAPH-5BA6)

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

Programming

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

Web

CSS
\005BA6
HtmlDecimal
宦
HtmlHexadecimal
宦
Url
%E5%AE%A6

Code

MD5
53a1b6bc82f7c99db6b86f6bbf044445
Sha1
48cc68d6b62084335a96ac86807903f88eae31bf
Base64
5a6m

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BA6';
console.log(char);  // Output: 宦

Java:

char c = '\u5BA6';
System.out.println(c);  // Output: 宦

JSON:

{"text": "\u5BA6"}  // Value: 宦

Python:

char = '\u5BA6'
print(char)  # Output: 宦

Perl:

my $char = "\x{5BA6}";
print $char;  # Output: 宦

PHP:

$char = "\x{5BA6}";
echo $char;  // Output: 宦

Ruby:

char = "\u{5BA6}"
puts char  # Output: 宦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23462;</p>  <!-- Display: 宦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BA6;</p>  <!-- Display: 宦 -->

URL Encoding:

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

Encodings

MD5:

53a1b6bc82f7c99db6b86f6bbf044445

SHA1:

48cc68d6b62084335a96ac86807903f88eae31bf

Base64:

5a6m