Unicode Finder

"寎" U+5BCE(CJK UNIFIED IDEOGRAPH-5BCE)

U+5BCE
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5BCE

Programming

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

Web

CSS
\005BCE
HtmlDecimal
寎
HtmlHexadecimal
寎
Url
%E5%AF%8E

Code

MD5
ae2f729651fc90be2fbc795ddba15af1
Sha1
e4886d8e93c882acec531628af1436bf7c1fd657
Base64
5a+O

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5BCE';
console.log(char);  // Output: 寎

Java:

char c = '\u5BCE';
System.out.println(c);  // Output: 寎

JSON:

{"text": "\u5BCE"}  // Value: 寎

Python:

char = '\u5BCE'
print(char)  # Output: 寎

Perl:

my $char = "\x{5BCE}";
print $char;  # Output: 寎

PHP:

$char = "\x{5BCE}";
echo $char;  // Output: 寎

Ruby:

char = "\u{5BCE}"
puts char  # Output: 寎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23502;</p>  <!-- Display: 寎 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BCE;</p>  <!-- Display: 寎 -->

URL Encoding:

// 寎 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%8E

Encodings

MD5:

ae2f729651fc90be2fbc795ddba15af1

SHA1:

e4886d8e93c882acec531628af1436bf7c1fd657

Base64:

5a+O