Unicode Finder

"堘" U+5818(CJK UNIFIED IDEOGRAPH-5818)

U+5818
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5818

Programming

C
\u5818
JavaScript
\u5818
Java
\u5818
Json
\u5818
Python
\u5818
Perl
\x{5818}
PHP
\x{5818}
Ruby
\u{5818}
Rust
\u{5818}
Go
\u5818

Web

CSS
\005818
HtmlDecimal
堘
HtmlHexadecimal
堘
Url
%E5%A0%98

Code

MD5
84f6f0c93a952df894ea700be8c1e700
Sha1
97436b55832a45a96728a011ddcab5fdc64c273a
Base64
5aCY

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5818';
console.log(char);  // Output: 堘

Java:

char c = '\u5818';
System.out.println(c);  // Output: 堘

JSON:

{"text": "\u5818"}  // Value: 堘

Python:

char = '\u5818'
print(char)  # Output: 堘

Perl:

my $char = "\x{5818}";
print $char;  # Output: 堘

PHP:

$char = "\x{5818}";
echo $char;  // Output: 堘

Ruby:

char = "\u{5818}"
puts char  # Output: 堘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005818";  /* Display: 堘 */
}

HTML Decimal:

<p>HTML decimal: &#22552;</p>  <!-- Display: 堘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5818;</p>  <!-- Display: 堘 -->

URL Encoding:

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

Encodings

MD5:

84f6f0c93a952df894ea700be8c1e700

SHA1:

97436b55832a45a96728a011ddcab5fdc64c273a

Base64:

5aCY