Unicode Finder

"堀" U+5800(CJK UNIFIED IDEOGRAPH-5800)

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

Programming

C
\u5800
JavaScript
\u5800
Java
\u5800
Json
\u5800
Python
\u5800
Perl
\x{5800}
PHP
\x{5800}
Ruby
\u{5800}
Rust
\u{5800}
Go
\u5800

Web

CSS
\005800
HtmlDecimal
堀
HtmlHexadecimal
堀
Url
%E5%A0%80

Code

MD5
a2bf6d0e0a8370430b7219d2497f807f
Sha1
61a456904ee5578d1ef80271c14c843ad7f6c75d
Base64
5aCA

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5800';
console.log(char);  // Output: 堀

Java:

char c = '\u5800';
System.out.println(c);  // Output: 堀

JSON:

{"text": "\u5800"}  // Value: 堀

Python:

char = '\u5800'
print(char)  # Output: 堀

Perl:

my $char = "\x{5800}";
print $char;  # Output: 堀

PHP:

$char = "\x{5800}";
echo $char;  // Output: 堀

Ruby:

char = "\u{5800}"
puts char  # Output: 堀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005800";  /* Display: 堀 */
}

HTML Decimal:

<p>HTML decimal: &#22528;</p>  <!-- Display: 堀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5800;</p>  <!-- Display: 堀 -->

URL Encoding:

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

Encodings

MD5:

a2bf6d0e0a8370430b7219d2497f807f

SHA1:

61a456904ee5578d1ef80271c14c843ad7f6c75d

Base64:

5aCA