Unicode Finder

"唠" U+5520(CJK UNIFIED IDEOGRAPH-5520)

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

Programming

C
\u5520
JavaScript
\u5520
Java
\u5520
Json
\u5520
Python
\u5520
Perl
\x{5520}
PHP
\x{5520}
Ruby
\u{5520}
Rust
\u{5520}
Go
\u5520

Web

CSS
\005520
HtmlDecimal
唠
HtmlHexadecimal
唠
Url
%E5%94%A0

Code

MD5
52908a44ed11077949df1741944ec783
Sha1
b0b7e0433d181dc32ba8a1f3e662633d9c5f024b
Base64
5ZSg

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5520';
console.log(char);  // Output: 唠

Java:

char c = '\u5520';
System.out.println(c);  // Output: 唠

JSON:

{"text": "\u5520"}  // Value: 唠

Python:

char = '\u5520'
print(char)  # Output: 唠

Perl:

my $char = "\x{5520}";
print $char;  # Output: 唠

PHP:

$char = "\x{5520}";
echo $char;  // Output: 唠

Ruby:

char = "\u{5520}"
puts char  # Output: 唠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005520";  /* Display: 唠 */
}

HTML Decimal:

<p>HTML decimal: &#21792;</p>  <!-- Display: 唠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5520;</p>  <!-- Display: 唠 -->

URL Encoding:

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

Encodings

MD5:

52908a44ed11077949df1741944ec783

SHA1:

b0b7e0433d181dc32ba8a1f3e662633d9c5f024b

Base64:

5ZSg