Unicode Finder

"呄" U+5444(CJK UNIFIED IDEOGRAPH-5444)

U+5444
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5444

Programming

C
\u5444
JavaScript
\u5444
Java
\u5444
Json
\u5444
Python
\u5444
Perl
\x{5444}
PHP
\x{5444}
Ruby
\u{5444}
Rust
\u{5444}
Go
\u5444

Web

CSS
\005444
HtmlDecimal
呄
HtmlHexadecimal
呄
Url
%E5%91%84

Code

MD5
b1ab50057233be29afe4dd7d60e88ae0
Sha1
90d5f29c3ea9b1c2720fdc99734c202f87c3f897
Base64
5ZGE

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5444';
console.log(char);  // Output: 呄

Java:

char c = '\u5444';
System.out.println(c);  // Output: 呄

JSON:

{"text": "\u5444"}  // Value: 呄

Python:

char = '\u5444'
print(char)  # Output: 呄

Perl:

my $char = "\x{5444}";
print $char;  # Output: 呄

PHP:

$char = "\x{5444}";
echo $char;  // Output: 呄

Ruby:

char = "\u{5444}"
puts char  # Output: 呄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005444";  /* Display: 呄 */
}

HTML Decimal:

<p>HTML decimal: &#21572;</p>  <!-- Display: 呄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5444;</p>  <!-- Display: 呄 -->

URL Encoding:

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

Encodings

MD5:

b1ab50057233be29afe4dd7d60e88ae0

SHA1:

90d5f29c3ea9b1c2720fdc99734c202f87c3f897

Base64:

5ZGE