Unicode Finder

"吣" U+5423(CJK UNIFIED IDEOGRAPH-5423)

U+5423
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5423

Programming

C
\u5423
JavaScript
\u5423
Java
\u5423
Json
\u5423
Python
\u5423
Perl
\x{5423}
PHP
\x{5423}
Ruby
\u{5423}
Rust
\u{5423}
Go
\u5423

Web

CSS
\005423
HtmlDecimal
吣
HtmlHexadecimal
吣
Url
%E5%90%A3

Code

MD5
45bcd37ee0a52e65c0e12922c54ca01e
Sha1
5ac19d76b63049fc255ca64d5b92daa8205d3366
Base64
5ZCj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5423';
console.log(char);  // Output: 吣

Java:

char c = '\u5423';
System.out.println(c);  // Output: 吣

JSON:

{"text": "\u5423"}  // Value: 吣

Python:

char = '\u5423'
print(char)  # Output: 吣

Perl:

my $char = "\x{5423}";
print $char;  # Output: 吣

PHP:

$char = "\x{5423}";
echo $char;  // Output: 吣

Ruby:

char = "\u{5423}"
puts char  # Output: 吣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005423";  /* Display: 吣 */
}

HTML Decimal:

<p>HTML decimal: &#21539;</p>  <!-- Display: 吣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5423;</p>  <!-- Display: 吣 -->

URL Encoding:

// 吣 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%A3

Encodings

MD5:

45bcd37ee0a52e65c0e12922c54ca01e

SHA1:

5ac19d76b63049fc255ca64d5b92daa8205d3366

Base64:

5ZCj