Unicode Finder

"宯" U+5BAF(CJK UNIFIED IDEOGRAPH-5BAF)

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

Programming

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

Web

CSS
\005BAF
HtmlDecimal
宯
HtmlHexadecimal
宯
Url
%E5%AE%AF

Code

MD5
442308fb9bda8a5ed0b1a5f10a438f48
Sha1
15b030fecdc63f1d15783c5b16cc09c097c74209
Base64
5a6v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BAF';
console.log(char);  // Output: 宯

Java:

char c = '\u5BAF';
System.out.println(c);  // Output: 宯

JSON:

{"text": "\u5BAF"}  // Value: 宯

Python:

char = '\u5BAF'
print(char)  # Output: 宯

Perl:

my $char = "\x{5BAF}";
print $char;  # Output: 宯

PHP:

$char = "\x{5BAF}";
echo $char;  // Output: 宯

Ruby:

char = "\u{5BAF}"
puts char  # Output: 宯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23471;</p>  <!-- Display: 宯 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BAF;</p>  <!-- Display: 宯 -->

URL Encoding:

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

Encodings

MD5:

442308fb9bda8a5ed0b1a5f10a438f48

SHA1:

15b030fecdc63f1d15783c5b16cc09c097c74209

Base64:

5a6v