Unicode Finder

"夤" U+5924(CJK UNIFIED IDEOGRAPH-5924)

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

Programming

C
\u5924
JavaScript
\u5924
Java
\u5924
Json
\u5924
Python
\u5924
Perl
\x{5924}
PHP
\x{5924}
Ruby
\u{5924}
Rust
\u{5924}
Go
\u5924

Web

CSS
\005924
HtmlDecimal
夤
HtmlHexadecimal
夤
Url
%E5%A4%A4

Code

MD5
8876df763f454f7f112a38a093cacb89
Sha1
fe22bfff0cce52c43369451bab950167944ada84
Base64
5aSk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5924';
console.log(char);  // Output: 夤

Java:

char c = '\u5924';
System.out.println(c);  // Output: 夤

JSON:

{"text": "\u5924"}  // Value: 夤

Python:

char = '\u5924'
print(char)  # Output: 夤

Perl:

my $char = "\x{5924}";
print $char;  # Output: 夤

PHP:

$char = "\x{5924}";
echo $char;  // Output: 夤

Ruby:

char = "\u{5924}"
puts char  # Output: 夤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005924";  /* Display: 夤 */
}

HTML Decimal:

<p>HTML decimal: &#22820;</p>  <!-- Display: 夤 -->

HTML Hexadecimal:

<p>HTML hex: &#x5924;</p>  <!-- Display: 夤 -->

URL Encoding:

// 夤 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%A4

Encodings

MD5:

8876df763f454f7f112a38a093cacb89

SHA1:

fe22bfff0cce52c43369451bab950167944ada84

Base64:

5aSk