Unicode Finder

"奀" U+5940(CJK UNIFIED IDEOGRAPH-5940)

U+5940
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-5940

Programming

C
\u5940
JavaScript
\u5940
Java
\u5940
Json
\u5940
Python
\u5940
Perl
\x{5940}
PHP
\x{5940}
Ruby
\u{5940}
Rust
\u{5940}
Go
\u5940

Web

CSS
\005940
HtmlDecimal
奀
HtmlHexadecimal
奀
Url
%E5%A5%80

Code

MD5
d656ff713d6d817101ddd1e0d6703905
Sha1
89e3c3c8f1c5052a5f007a99326fb1a2c40e8c1f
Base64
5aWA

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5940';
console.log(char);  // Output: 奀

Java:

char c = '\u5940';
System.out.println(c);  // Output: 奀

JSON:

{"text": "\u5940"}  // Value: 奀

Python:

char = '\u5940'
print(char)  # Output: 奀

Perl:

my $char = "\x{5940}";
print $char;  # Output: 奀

PHP:

$char = "\x{5940}";
echo $char;  // Output: 奀

Ruby:

char = "\u{5940}"
puts char  # Output: 奀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005940";  /* Display: 奀 */
}

HTML Decimal:

<p>HTML decimal: &#22848;</p>  <!-- Display: 奀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5940;</p>  <!-- Display: 奀 -->

URL Encoding:

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

Encodings

MD5:

d656ff713d6d817101ddd1e0d6703905

SHA1:

89e3c3c8f1c5052a5f007a99326fb1a2c40e8c1f

Base64:

5aWA