Unicode Finder

"寏" U+5BCF(CJK UNIFIED IDEOGRAPH-5BCF)

U+5BCF
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5BCF

Programming

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

Web

CSS
\005BCF
HtmlDecimal
寏
HtmlHexadecimal
寏
Url
%E5%AF%8F

Code

MD5
569acb8a2f90dd154e5fef4f0ea25a90
Sha1
7f8cd52156682324e6d8ba41b394260229f46332
Base64
5a+P

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5BCF';
console.log(char);  // Output: 寏

Java:

char c = '\u5BCF';
System.out.println(c);  // Output: 寏

JSON:

{"text": "\u5BCF"}  // Value: 寏

Python:

char = '\u5BCF'
print(char)  # Output: 寏

Perl:

my $char = "\x{5BCF}";
print $char;  # Output: 寏

PHP:

$char = "\x{5BCF}";
echo $char;  // Output: 寏

Ruby:

char = "\u{5BCF}"
puts char  # Output: 寏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23503;</p>  <!-- Display: 寏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BCF;</p>  <!-- Display: 寏 -->

URL Encoding:

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

Encodings

MD5:

569acb8a2f90dd154e5fef4f0ea25a90

SHA1:

7f8cd52156682324e6d8ba41b394260229f46332

Base64:

5a+P