Unicode Finder

"夀" U+5900(CJK UNIFIED IDEOGRAPH-5900)

U+5900
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-5900

Programming

C
\u5900
JavaScript
\u5900
Java
\u5900
Json
\u5900
Python
\u5900
Perl
\x{5900}
PHP
\x{5900}
Ruby
\u{5900}
Rust
\u{5900}
Go
\u5900

Web

CSS
\005900
HtmlDecimal
夀
HtmlHexadecimal
夀
Url
%E5%A4%80

Code

MD5
317c4ca565565d3ed6fc85f3fc494544
Sha1
4cc73fbcb247e9c94237b3b69016feefad73b554
Base64
5aSA

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5900';
console.log(char);  // Output: 夀

Java:

char c = '\u5900';
System.out.println(c);  // Output: 夀

JSON:

{"text": "\u5900"}  // Value: 夀

Python:

char = '\u5900'
print(char)  # Output: 夀

Perl:

my $char = "\x{5900}";
print $char;  # Output: 夀

PHP:

$char = "\x{5900}";
echo $char;  // Output: 夀

Ruby:

char = "\u{5900}"
puts char  # Output: 夀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005900";  /* Display: 夀 */
}

HTML Decimal:

<p>HTML decimal: &#22784;</p>  <!-- Display: 夀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5900;</p>  <!-- Display: 夀 -->

URL Encoding:

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

Encodings

MD5:

317c4ca565565d3ed6fc85f3fc494544

SHA1:

4cc73fbcb247e9c94237b3b69016feefad73b554

Base64:

5aSA