Unicode Finder

"夁" U+5901(CJK UNIFIED IDEOGRAPH-5901)

U+5901
블록 이름
CJK Unified Ideographs
이름
CJK UNIFIED IDEOGRAPH-5901

Programming

C
\u5901
JavaScript
\u5901
Java
\u5901
Json
\u5901
Python
\u5901
Perl
\x{5901}
PHP
\x{5901}
Ruby
\u{5901}
Rust
\u{5901}
Go
\u5901

Web

CSS
\005901
HtmlDecimal
夁
HtmlHexadecimal
夁
Url
%E5%A4%81

Code

MD5
9ce9a63b758aad3ab48e34a3fd5bd957
Sha1
94fefabd89786ac4686c54514ea4ed2db8a03474
Base64
5aSB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5901';
console.log(char);  // Output: 夁

Java:

char c = '\u5901';
System.out.println(c);  // Output: 夁

JSON:

{"text": "\u5901"}  // Value: 夁

Python:

char = '\u5901'
print(char)  # Output: 夁

Perl:

my $char = "\x{5901}";
print $char;  # Output: 夁

PHP:

$char = "\x{5901}";
echo $char;  // Output: 夁

Ruby:

char = "\u{5901}"
puts char  # Output: 夁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005901";  /* Display: 夁 */
}

HTML Decimal:

<p>HTML decimal: &#22785;</p>  <!-- Display: 夁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5901;</p>  <!-- Display: 夁 -->

URL Encoding:

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

Encodings

MD5:

9ce9a63b758aad3ab48e34a3fd5bd957

SHA1:

94fefabd89786ac4686c54514ea4ed2db8a03474

Base64:

5aSB