Unicode Finder

"吔" U+5414(CJK UNIFIED IDEOGRAPH-5414)

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

Programming

C
\u5414
JavaScript
\u5414
Java
\u5414
Json
\u5414
Python
\u5414
Perl
\x{5414}
PHP
\x{5414}
Ruby
\u{5414}
Rust
\u{5414}
Go
\u5414

Web

CSS
\005414
HtmlDecimal
吔
HtmlHexadecimal
吔
Url
%E5%90%94

Code

MD5
de7513ca0a29fce3277e8f952874c6c6
Sha1
306bdc4bbafc94a74b7658ca0dbd3d7f5e7d0923
Base64
5ZCU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5414';
console.log(char);  // Output: 吔

Java:

char c = '\u5414';
System.out.println(c);  // Output: 吔

JSON:

{"text": "\u5414"}  // Value: 吔

Python:

char = '\u5414'
print(char)  # Output: 吔

Perl:

my $char = "\x{5414}";
print $char;  # Output: 吔

PHP:

$char = "\x{5414}";
echo $char;  // Output: 吔

Ruby:

char = "\u{5414}"
puts char  # Output: 吔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005414";  /* Display: 吔 */
}

HTML Decimal:

<p>HTML decimal: &#21524;</p>  <!-- Display: 吔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5414;</p>  <!-- Display: 吔 -->

URL Encoding:

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

Encodings

MD5:

de7513ca0a29fce3277e8f952874c6c6

SHA1:

306bdc4bbafc94a74b7658ca0dbd3d7f5e7d0923

Base64:

5ZCU