Unicode Finder

"奐" U+5950(CJK UNIFIED IDEOGRAPH-5950)

U+5950
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-5950

Programming

C
\u5950
JavaScript
\u5950
Java
\u5950
Json
\u5950
Python
\u5950
Perl
\x{5950}
PHP
\x{5950}
Ruby
\u{5950}
Rust
\u{5950}
Go
\u5950

Web

CSS
\005950
HtmlDecimal
奐
HtmlHexadecimal
奐
Url
%E5%A5%90

Code

MD5
eb60db27d000cb67a747e5efe75f8c02
Sha1
a1dd184023e883113f6ae70b1b5b5e50d8dd3a68
Base64
5aWQ

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5950';
console.log(char);  // Output: 奐

Java:

char c = '\u5950';
System.out.println(c);  // Output: 奐

JSON:

{"text": "\u5950"}  // Value: 奐

Python:

char = '\u5950'
print(char)  # Output: 奐

Perl:

my $char = "\x{5950}";
print $char;  # Output: 奐

PHP:

$char = "\x{5950}";
echo $char;  // Output: 奐

Ruby:

char = "\u{5950}"
puts char  # Output: 奐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005950";  /* Display: 奐 */
}

HTML Decimal:

<p>HTML decimal: &#22864;</p>  <!-- Display: 奐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5950;</p>  <!-- Display: 奐 -->

URL Encoding:

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

Encodings

MD5:

eb60db27d000cb67a747e5efe75f8c02

SHA1:

a1dd184023e883113f6ae70b1b5b5e50d8dd3a68

Base64:

5aWQ