Unicode Finder

"呧" U+5467(CJK UNIFIED IDEOGRAPH-5467)

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

Programming

C
\u5467
JavaScript
\u5467
Java
\u5467
Json
\u5467
Python
\u5467
Perl
\x{5467}
PHP
\x{5467}
Ruby
\u{5467}
Rust
\u{5467}
Go
\u5467

Web

CSS
\005467
HtmlDecimal
呧
HtmlHexadecimal
呧
Url
%E5%91%A7

Code

MD5
ec020f920653d3431e6bcc2a9191ba64
Sha1
928182869e502fc37c17ea9f7ac77fe526412120
Base64
5ZGn

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u5467';
console.log(char);  // Output: 呧

Java:

char c = '\u5467';
System.out.println(c);  // Output: 呧

JSON:

{"text": "\u5467"}  // Value: 呧

Python:

char = '\u5467'
print(char)  # Output: 呧

Perl:

my $char = "\x{5467}";
print $char;  # Output: 呧

PHP:

$char = "\x{5467}";
echo $char;  // Output: 呧

Ruby:

char = "\u{5467}"
puts char  # Output: 呧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005467";  /* Display: 呧 */
}

HTML Decimal:

<p>HTML decimal: &#21607;</p>  <!-- Display: 呧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5467;</p>  <!-- Display: 呧 -->

URL Encoding:

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

Encodings

MD5:

ec020f920653d3431e6bcc2a9191ba64

SHA1:

928182869e502fc37c17ea9f7ac77fe526412120

Base64:

5ZGn