Unicode Finder

"唰" U+5530(CJK UNIFIED IDEOGRAPH-5530)

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

Programming

C
\u5530
JavaScript
\u5530
Java
\u5530
Json
\u5530
Python
\u5530
Perl
\x{5530}
PHP
\x{5530}
Ruby
\u{5530}
Rust
\u{5530}
Go
\u5530

Web

CSS
\005530
HtmlDecimal
唰
HtmlHexadecimal
唰
Url
%E5%94%B0

Code

MD5
de82d667ff843ed7f672b4629b19b5c4
Sha1
d554c5f0da4276faccb80353b2bde3001a6b5d74
Base64
5ZSw

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5530';
console.log(char);  // Output: 唰

Java:

char c = '\u5530';
System.out.println(c);  // Output: 唰

JSON:

{"text": "\u5530"}  // Value: 唰

Python:

char = '\u5530'
print(char)  # Output: 唰

Perl:

my $char = "\x{5530}";
print $char;  # Output: 唰

PHP:

$char = "\x{5530}";
echo $char;  // Output: 唰

Ruby:

char = "\u{5530}"
puts char  # Output: 唰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005530";  /* Display: 唰 */
}

HTML Decimal:

<p>HTML decimal: &#21808;</p>  <!-- Display: 唰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5530;</p>  <!-- Display: 唰 -->

URL Encoding:

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

Encodings

MD5:

de82d667ff843ed7f672b4629b19b5c4

SHA1:

d554c5f0da4276faccb80353b2bde3001a6b5d74

Base64:

5ZSw