Unicode Finder

"呀" U+5440(CJK UNIFIED IDEOGRAPH-5440)

U+5440
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5440

Programming

C
\u5440
JavaScript
\u5440
Java
\u5440
Json
\u5440
Python
\u5440
Perl
\x{5440}
PHP
\x{5440}
Ruby
\u{5440}
Rust
\u{5440}
Go
\u5440

Web

CSS
\005440
HtmlDecimal
呀
HtmlHexadecimal
呀
Url
%E5%91%80

Code

MD5
4bdddbd287d5c3d79998f72a7c4453c5
Sha1
4cbb90725428fc7a1c6df97eb392ddcc1ea2a202
Base64
5ZGA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5440';
console.log(char);  // Output: 呀

Java:

char c = '\u5440';
System.out.println(c);  // Output: 呀

JSON:

{"text": "\u5440"}  // Value: 呀

Python:

char = '\u5440'
print(char)  # Output: 呀

Perl:

my $char = "\x{5440}";
print $char;  # Output: 呀

PHP:

$char = "\x{5440}";
echo $char;  // Output: 呀

Ruby:

char = "\u{5440}"
puts char  # Output: 呀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005440";  /* Display: 呀 */
}

HTML Decimal:

<p>HTML decimal: &#21568;</p>  <!-- Display: 呀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5440;</p>  <!-- Display: 呀 -->

URL Encoding:

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

Encodings

MD5:

4bdddbd287d5c3d79998f72a7c4453c5

SHA1:

4cbb90725428fc7a1c6df97eb392ddcc1ea2a202

Base64:

5ZGA