Unicode Finder

"寃" U+5BC3(CJK UNIFIED IDEOGRAPH-5BC3)

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

Programming

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

Web

CSS
\005BC3
HtmlDecimal
寃
HtmlHexadecimal
寃
Url
%E5%AF%83

Code

MD5
a281a9a75c632302c4db238a6456ad1a
Sha1
92b3ddb099224abbfa3067d4fdeb9c87da619a5a
Base64
5a+D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BC3';
console.log(char);  // Output: 寃

Java:

char c = '\u5BC3';
System.out.println(c);  // Output: 寃

JSON:

{"text": "\u5BC3"}  // Value: 寃

Python:

char = '\u5BC3'
print(char)  # Output: 寃

Perl:

my $char = "\x{5BC3}";
print $char;  # Output: 寃

PHP:

$char = "\x{5BC3}";
echo $char;  // Output: 寃

Ruby:

char = "\u{5BC3}"
puts char  # Output: 寃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23491;</p>  <!-- Display: 寃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BC3;</p>  <!-- Display: 寃 -->

URL Encoding:

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

Encodings

MD5:

a281a9a75c632302c4db238a6456ad1a

SHA1:

92b3ddb099224abbfa3067d4fdeb9c87da619a5a

Base64:

5a+D