Unicode Finder

"呲" U+5472(CJK UNIFIED IDEOGRAPH-5472)

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

Programming

C
\u5472
JavaScript
\u5472
Java
\u5472
Json
\u5472
Python
\u5472
Perl
\x{5472}
PHP
\x{5472}
Ruby
\u{5472}
Rust
\u{5472}
Go
\u5472

Web

CSS
\005472
HtmlDecimal
呲
HtmlHexadecimal
呲
Url
%E5%91%B2

Code

MD5
efd393b48b84e7e25a493c7c3f2808bd
Sha1
1af74c3dba493d776646157aa0ad24608a4a684f
Base64
5ZGy

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5472';
console.log(char);  // Output: 呲

Java:

char c = '\u5472';
System.out.println(c);  // Output: 呲

JSON:

{"text": "\u5472"}  // Value: 呲

Python:

char = '\u5472'
print(char)  # Output: 呲

Perl:

my $char = "\x{5472}";
print $char;  # Output: 呲

PHP:

$char = "\x{5472}";
echo $char;  // Output: 呲

Ruby:

char = "\u{5472}"
puts char  # Output: 呲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005472";  /* Display: 呲 */
}

HTML Decimal:

<p>HTML decimal: &#21618;</p>  <!-- Display: 呲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5472;</p>  <!-- Display: 呲 -->

URL Encoding:

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

Encodings

MD5:

efd393b48b84e7e25a493c7c3f2808bd

SHA1:

1af74c3dba493d776646157aa0ad24608a4a684f

Base64:

5ZGy