Unicode Finder

"堔" U+5814(CJK UNIFIED IDEOGRAPH-5814)

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

Programming

C
\u5814
JavaScript
\u5814
Java
\u5814
Json
\u5814
Python
\u5814
Perl
\x{5814}
PHP
\x{5814}
Ruby
\u{5814}
Rust
\u{5814}
Go
\u5814

Web

CSS
\005814
HtmlDecimal
堔
HtmlHexadecimal
堔
Url
%E5%A0%94

Code

MD5
348355c539193b9cdfefbcded0934177
Sha1
cb101b525d0e4947c9251ed75fa4f070bf0573fe
Base64
5aCU

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5814';
console.log(char);  // Output: 堔

Java:

char c = '\u5814';
System.out.println(c);  // Output: 堔

JSON:

{"text": "\u5814"}  // Value: 堔

Python:

char = '\u5814'
print(char)  # Output: 堔

Perl:

my $char = "\x{5814}";
print $char;  # Output: 堔

PHP:

$char = "\x{5814}";
echo $char;  // Output: 堔

Ruby:

char = "\u{5814}"
puts char  # Output: 堔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005814";  /* Display: 堔 */
}

HTML Decimal:

<p>HTML decimal: &#22548;</p>  <!-- Display: 堔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5814;</p>  <!-- Display: 堔 -->

URL Encoding:

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

Encodings

MD5:

348355c539193b9cdfefbcded0934177

SHA1:

cb101b525d0e4947c9251ed75fa4f070bf0573fe

Base64:

5aCU