Unicode Finder

"吖" U+5416(CJK UNIFIED IDEOGRAPH-5416)

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

Programming

C
\u5416
JavaScript
\u5416
Java
\u5416
Json
\u5416
Python
\u5416
Perl
\x{5416}
PHP
\x{5416}
Ruby
\u{5416}
Rust
\u{5416}
Go
\u5416

Web

CSS
\005416
HtmlDecimal
吖
HtmlHexadecimal
吖
Url
%E5%90%96

Code

MD5
dc7701c93592c2b9f08e8528e336507e
Sha1
da73a838fdd551491b7498ca92dea6d75bb14a40
Base64
5ZCW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5416';
console.log(char);  // Output: 吖

Java:

char c = '\u5416';
System.out.println(c);  // Output: 吖

JSON:

{"text": "\u5416"}  // Value: 吖

Python:

char = '\u5416'
print(char)  # Output: 吖

Perl:

my $char = "\x{5416}";
print $char;  # Output: 吖

PHP:

$char = "\x{5416}";
echo $char;  // Output: 吖

Ruby:

char = "\u{5416}"
puts char  # Output: 吖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005416";  /* Display: 吖 */
}

HTML Decimal:

<p>HTML decimal: &#21526;</p>  <!-- Display: 吖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5416;</p>  <!-- Display: 吖 -->

URL Encoding:

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

Encodings

MD5:

dc7701c93592c2b9f08e8528e336507e

SHA1:

da73a838fdd551491b7498ca92dea6d75bb14a40

Base64:

5ZCW