Unicode Finder

"呙" U+5459(CJK UNIFIED IDEOGRAPH-5459)

U+5459
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5459

Programming

C
\u5459
JavaScript
\u5459
Java
\u5459
Json
\u5459
Python
\u5459
Perl
\x{5459}
PHP
\x{5459}
Ruby
\u{5459}
Rust
\u{5459}
Go
\u5459

Web

CSS
\005459
HtmlDecimal
呙
HtmlHexadecimal
呙
Url
%E5%91%99

Code

MD5
175f2ac625912aba2b297284a142a2cb
Sha1
6e0fe2fbe5d1b93fb136dc5c9553e2d758487990
Base64
5ZGZ

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5459';
console.log(char);  // Output: 呙

Java:

char c = '\u5459';
System.out.println(c);  // Output: 呙

JSON:

{"text": "\u5459"}  // Value: 呙

Python:

char = '\u5459'
print(char)  # Output: 呙

Perl:

my $char = "\x{5459}";
print $char;  # Output: 呙

PHP:

$char = "\x{5459}";
echo $char;  // Output: 呙

Ruby:

char = "\u{5459}"
puts char  # Output: 呙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005459";  /* Display: 呙 */
}

HTML Decimal:

<p>HTML decimal: &#21593;</p>  <!-- Display: 呙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5459;</p>  <!-- Display: 呙 -->

URL Encoding:

// 呙 URL encoding
https://unicodefinder.com/search.php?query=%E5%91%99

Encodings

MD5:

175f2ac625912aba2b297284a142a2cb

SHA1:

6e0fe2fbe5d1b93fb136dc5c9553e2d758487990

Base64:

5ZGZ