Unicode Finder

"吓" U+5413(CJK UNIFIED IDEOGRAPH-5413)

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

Programming

C
\u5413
JavaScript
\u5413
Java
\u5413
Json
\u5413
Python
\u5413
Perl
\x{5413}
PHP
\x{5413}
Ruby
\u{5413}
Rust
\u{5413}
Go
\u5413

Web

CSS
\005413
HtmlDecimal
吓
HtmlHexadecimal
吓
Url
%E5%90%93

Code

MD5
17a6c6e6971ed5e08c9f773a09c3aa27
Sha1
65264412990bcf8a173f6b15c5eac9cce2e7c7b8
Base64
5ZCT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5413';
console.log(char);  // Output: 吓

Java:

char c = '\u5413';
System.out.println(c);  // Output: 吓

JSON:

{"text": "\u5413"}  // Value: 吓

Python:

char = '\u5413'
print(char)  # Output: 吓

Perl:

my $char = "\x{5413}";
print $char;  # Output: 吓

PHP:

$char = "\x{5413}";
echo $char;  // Output: 吓

Ruby:

char = "\u{5413}"
puts char  # Output: 吓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005413";  /* Display: 吓 */
}

HTML Decimal:

<p>HTML decimal: &#21523;</p>  <!-- Display: 吓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5413;</p>  <!-- Display: 吓 -->

URL Encoding:

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

Encodings

MD5:

17a6c6e6971ed5e08c9f773a09c3aa27

SHA1:

65264412990bcf8a173f6b15c5eac9cce2e7c7b8

Base64:

5ZCT