Unicode Finder

"唙" U+5519(CJK UNIFIED IDEOGRAPH-5519)

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

Programming

C
\u5519
JavaScript
\u5519
Java
\u5519
Json
\u5519
Python
\u5519
Perl
\x{5519}
PHP
\x{5519}
Ruby
\u{5519}
Rust
\u{5519}
Go
\u5519

Web

CSS
\005519
HtmlDecimal
唙
HtmlHexadecimal
唙
Url
%E5%94%99

Code

MD5
d67eceaf469a5f20bf6b924150972f9c
Sha1
823a7a6dc88dacfae51125e9ec1b5476ffcd617b
Base64
5ZSZ

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5519';
console.log(char);  // Output: 唙

Java:

char c = '\u5519';
System.out.println(c);  // Output: 唙

JSON:

{"text": "\u5519"}  // Value: 唙

Python:

char = '\u5519'
print(char)  # Output: 唙

Perl:

my $char = "\x{5519}";
print $char;  # Output: 唙

PHP:

$char = "\x{5519}";
echo $char;  // Output: 唙

Ruby:

char = "\u{5519}"
puts char  # Output: 唙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005519";  /* Display: 唙 */
}

HTML Decimal:

<p>HTML decimal: &#21785;</p>  <!-- Display: 唙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5519;</p>  <!-- Display: 唙 -->

URL Encoding:

// 唙 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%99

Encodings

MD5:

d67eceaf469a5f20bf6b924150972f9c

SHA1:

823a7a6dc88dacfae51125e9ec1b5476ffcd617b

Base64:

5ZSZ