Unicode Finder

"吠" U+5420(CJK UNIFIED IDEOGRAPH-5420)

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

Programming

C
\u5420
JavaScript
\u5420
Java
\u5420
Json
\u5420
Python
\u5420
Perl
\x{5420}
PHP
\x{5420}
Ruby
\u{5420}
Rust
\u{5420}
Go
\u5420

Web

CSS
\005420
HtmlDecimal
吠
HtmlHexadecimal
吠
Url
%E5%90%A0

Code

MD5
05994e056fc2444318b89088d91b0a70
Sha1
41aec4d1c4be4bec572fcbd76df8fb30586808c1
Base64
5ZCg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5420';
console.log(char);  // Output: 吠

Java:

char c = '\u5420';
System.out.println(c);  // Output: 吠

JSON:

{"text": "\u5420"}  // Value: 吠

Python:

char = '\u5420'
print(char)  # Output: 吠

Perl:

my $char = "\x{5420}";
print $char;  # Output: 吠

PHP:

$char = "\x{5420}";
echo $char;  // Output: 吠

Ruby:

char = "\u{5420}"
puts char  # Output: 吠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005420";  /* Display: 吠 */
}

HTML Decimal:

<p>HTML decimal: &#21536;</p>  <!-- Display: 吠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5420;</p>  <!-- Display: 吠 -->

URL Encoding:

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

Encodings

MD5:

05994e056fc2444318b89088d91b0a70

SHA1:

41aec4d1c4be4bec572fcbd76df8fb30586808c1

Base64:

5ZCg