Unicode Finder

"呇" U+5447(CJK UNIFIED IDEOGRAPH-5447)

U+5447
Tên Khối
CJK Unified Ideographs
Tên
CJK UNIFIED IDEOGRAPH-5447

Programming

C
\u5447
JavaScript
\u5447
Java
\u5447
Json
\u5447
Python
\u5447
Perl
\x{5447}
PHP
\x{5447}
Ruby
\u{5447}
Rust
\u{5447}
Go
\u5447

Web

CSS
\005447
HtmlDecimal
呇
HtmlHexadecimal
呇
Url
%E5%91%87

Code

MD5
8705ec787b38281b095ae66269807b67
Sha1
4f16e43012b82d707bf3f03c6c7e391e89112d6f
Base64
5ZGH

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u5447';
console.log(char);  // Output: 呇

Java:

char c = '\u5447';
System.out.println(c);  // Output: 呇

JSON:

{"text": "\u5447"}  // Value: 呇

Python:

char = '\u5447'
print(char)  # Output: 呇

Perl:

my $char = "\x{5447}";
print $char;  # Output: 呇

PHP:

$char = "\x{5447}";
echo $char;  // Output: 呇

Ruby:

char = "\u{5447}"
puts char  # Output: 呇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005447";  /* Display: 呇 */
}

HTML Decimal:

<p>HTML decimal: &#21575;</p>  <!-- Display: 呇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5447;</p>  <!-- Display: 呇 -->

URL Encoding:

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

Encodings

MD5:

8705ec787b38281b095ae66269807b67

SHA1:

4f16e43012b82d707bf3f03c6c7e391e89112d6f

Base64:

5ZGH