Unicode Finder

"呣" U+5463(CJK UNIFIED IDEOGRAPH-5463)

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

Programming

C
\u5463
JavaScript
\u5463
Java
\u5463
Json
\u5463
Python
\u5463
Perl
\x{5463}
PHP
\x{5463}
Ruby
\u{5463}
Rust
\u{5463}
Go
\u5463

Web

CSS
\005463
HtmlDecimal
呣
HtmlHexadecimal
呣
Url
%E5%91%A3

Code

MD5
5afe7b5e2329542d1fe8593c1453bd11
Sha1
1981a564a4587aec4b30f6f58b325a3a3baabf57
Base64
5ZGj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5463';
console.log(char);  // Output: 呣

Java:

char c = '\u5463';
System.out.println(c);  // Output: 呣

JSON:

{"text": "\u5463"}  // Value: 呣

Python:

char = '\u5463'
print(char)  # Output: 呣

Perl:

my $char = "\x{5463}";
print $char;  # Output: 呣

PHP:

$char = "\x{5463}";
echo $char;  // Output: 呣

Ruby:

char = "\u{5463}"
puts char  # Output: 呣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005463";  /* Display: 呣 */
}

HTML Decimal:

<p>HTML decimal: &#21603;</p>  <!-- Display: 呣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5463;</p>  <!-- Display: 呣 -->

URL Encoding:

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

Encodings

MD5:

5afe7b5e2329542d1fe8593c1453bd11

SHA1:

1981a564a4587aec4b30f6f58b325a3a3baabf57

Base64:

5ZGj