Unicode Finder

"奁" U+5941(CJK UNIFIED IDEOGRAPH-5941)

U+5941
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5941

Programming

C
\u5941
JavaScript
\u5941
Java
\u5941
Json
\u5941
Python
\u5941
Perl
\x{5941}
PHP
\x{5941}
Ruby
\u{5941}
Rust
\u{5941}
Go
\u5941

Web

CSS
\005941
HtmlDecimal
奁
HtmlHexadecimal
奁
Url
%E5%A5%81

Code

MD5
a0668894277fa1d8c32a2a5c34b6527b
Sha1
88810d73a3c98997288f60b5e282568dad2aae3a
Base64
5aWB

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5941';
console.log(char);  // Output: 奁

Java:

char c = '\u5941';
System.out.println(c);  // Output: 奁

JSON:

{"text": "\u5941"}  // Value: 奁

Python:

char = '\u5941'
print(char)  # Output: 奁

Perl:

my $char = "\x{5941}";
print $char;  # Output: 奁

PHP:

$char = "\x{5941}";
echo $char;  // Output: 奁

Ruby:

char = "\u{5941}"
puts char  # Output: 奁

Rust:

let c = '\u{5941}';
println!("{}", c);  // Output: 奁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005941";  /* Display: 奁 */
}

HTML Decimal:

<p>HTML decimal: &#22849;</p>  <!-- Display: 奁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5941;</p>  <!-- Display: 奁 -->

URL Encoding:

// 奁 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%81

Encodings

MD5:

a0668894277fa1d8c32a2a5c34b6527b

SHA1:

88810d73a3c98997288f60b5e282568dad2aae3a

Base64:

5aWB