Unicode Finder

"吅" U+5405(CJK UNIFIED IDEOGRAPH-5405)

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

Programming

C
\u5405
JavaScript
\u5405
Java
\u5405
Json
\u5405
Python
\u5405
Perl
\x{5405}
PHP
\x{5405}
Ruby
\u{5405}
Rust
\u{5405}
Go
\u5405

Web

CSS
\005405
HtmlDecimal
吅
HtmlHexadecimal
吅
Url
%E5%90%85

Code

MD5
a34a19046c75320b33a0b1e7bad23140
Sha1
ef64c2b1b546b8168e7ad999dabb304677b63ecf
Base64
5ZCF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5405';
console.log(char);  // Output: 吅

Java:

char c = '\u5405';
System.out.println(c);  // Output: 吅

JSON:

{"text": "\u5405"}  // Value: 吅

Python:

char = '\u5405'
print(char)  # Output: 吅

Perl:

my $char = "\x{5405}";
print $char;  # Output: 吅

PHP:

$char = "\x{5405}";
echo $char;  // Output: 吅

Ruby:

char = "\u{5405}"
puts char  # Output: 吅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005405";  /* Display: 吅 */
}

HTML Decimal:

<p>HTML decimal: &#21509;</p>  <!-- Display: 吅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5405;</p>  <!-- Display: 吅 -->

URL Encoding:

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

Encodings

MD5:

a34a19046c75320b33a0b1e7bad23140

SHA1:

ef64c2b1b546b8168e7ad999dabb304677b63ecf

Base64:

5ZCF