Unicode Finder

"堥" U+5825(CJK UNIFIED IDEOGRAPH-5825)

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

Programming

C
\u5825
JavaScript
\u5825
Java
\u5825
Json
\u5825
Python
\u5825
Perl
\x{5825}
PHP
\x{5825}
Ruby
\u{5825}
Rust
\u{5825}
Go
\u5825

Web

CSS
\005825
HtmlDecimal
堥
HtmlHexadecimal
堥
Url
%E5%A0%A5

Code

MD5
3af0ccdb258e7c4663c7f5239bdd36ef
Sha1
a4fd94e8bfe448d6c17df65b902c3b0cf827c88a
Base64
5aCl

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5825';
console.log(char);  // Output: 堥

Java:

char c = '\u5825';
System.out.println(c);  // Output: 堥

JSON:

{"text": "\u5825"}  // Value: 堥

Python:

char = '\u5825'
print(char)  # Output: 堥

Perl:

my $char = "\x{5825}";
print $char;  # Output: 堥

PHP:

$char = "\x{5825}";
echo $char;  // Output: 堥

Ruby:

char = "\u{5825}"
puts char  # Output: 堥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005825";  /* Display: 堥 */
}

HTML Decimal:

<p>HTML decimal: &#22565;</p>  <!-- Display: 堥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5825;</p>  <!-- Display: 堥 -->

URL Encoding:

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

Encodings

MD5:

3af0ccdb258e7c4663c7f5239bdd36ef

SHA1:

a4fd94e8bfe448d6c17df65b902c3b0cf827c88a

Base64:

5aCl