Unicode Finder

"堇" U+5807(CJK UNIFIED IDEOGRAPH-5807)

U+5807
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5807

Programming

C
\u5807
JavaScript
\u5807
Java
\u5807
Json
\u5807
Python
\u5807
Perl
\x{5807}
PHP
\x{5807}
Ruby
\u{5807}
Rust
\u{5807}
Go
\u5807

Web

CSS
\005807
HtmlDecimal
堇
HtmlHexadecimal
堇
Url
%E5%A0%87

Code

MD5
d962de571a3b12dc64550b6092933798
Sha1
bb139b92772457cf45e52aaf3f75f34865ca996d
Base64
5aCH

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5807';
console.log(char);  // Output: 堇

Java:

char c = '\u5807';
System.out.println(c);  // Output: 堇

JSON:

{"text": "\u5807"}  // Value: 堇

Python:

char = '\u5807'
print(char)  # Output: 堇

Perl:

my $char = "\x{5807}";
print $char;  # Output: 堇

PHP:

$char = "\x{5807}";
echo $char;  // Output: 堇

Ruby:

char = "\u{5807}"
puts char  # Output: 堇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005807";  /* Display: 堇 */
}

HTML Decimal:

<p>HTML decimal: &#22535;</p>  <!-- Display: 堇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5807;</p>  <!-- Display: 堇 -->

URL Encoding:

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

Encodings

MD5:

d962de571a3b12dc64550b6092933798

SHA1:

bb139b92772457cf45e52aaf3f75f34865ca996d

Base64:

5aCH