Unicode Finder

"娱" U+5A31(CJK UNIFIED IDEOGRAPH-5A31)

U+5A31
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5A31

Programming

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

Web

CSS
\005A31
HtmlDecimal
娱
HtmlHexadecimal
娱
Url
%E5%A8%B1

Code

MD5
52c0d7f1c807b55a1591302edb000b2c
Sha1
5a76ab4da76f6c05d9a47879f8bfa857efd743c5
Base64
5aix

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5A31';
console.log(char);  // Output: 娱

Java:

char c = '\u5A31';
System.out.println(c);  // Output: 娱

JSON:

{"text": "\u5A31"}  // Value: 娱

Python:

char = '\u5A31'
print(char)  # Output: 娱

Perl:

my $char = "\x{5A31}";
print $char;  # Output: 娱

PHP:

$char = "\x{5A31}";
echo $char;  // Output: 娱

Ruby:

char = "\u{5A31}"
puts char  # Output: 娱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23089;</p>  <!-- Display: 娱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5A31;</p>  <!-- Display: 娱 -->

URL Encoding:

// 娱 URL encoding
https://unicodefinder.com/search.php?query=%E5%A8%B1

Encodings

MD5:

52c0d7f1c807b55a1591302edb000b2c

SHA1:

5a76ab4da76f6c05d9a47879f8bfa857efd743c5

Base64:

5aix