Unicode Finder

"夓" U+5913(CJK UNIFIED IDEOGRAPH-5913)

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

Programming

C
\u5913
JavaScript
\u5913
Java
\u5913
Json
\u5913
Python
\u5913
Perl
\x{5913}
PHP
\x{5913}
Ruby
\u{5913}
Rust
\u{5913}
Go
\u5913

Web

CSS
\005913
HtmlDecimal
夓
HtmlHexadecimal
夓
Url
%E5%A4%93

Code

MD5
0aa74413d6d4d5b69acd8753730b3ab7
Sha1
0905d21910628f793d94a939951e14bc13d88386
Base64
5aST

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5913';
console.log(char);  // Output: 夓

Java:

char c = '\u5913';
System.out.println(c);  // Output: 夓

JSON:

{"text": "\u5913"}  // Value: 夓

Python:

char = '\u5913'
print(char)  # Output: 夓

Perl:

my $char = "\x{5913}";
print $char;  # Output: 夓

PHP:

$char = "\x{5913}";
echo $char;  // Output: 夓

Ruby:

char = "\u{5913}"
puts char  # Output: 夓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005913";  /* Display: 夓 */
}

HTML Decimal:

<p>HTML decimal: &#22803;</p>  <!-- Display: 夓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5913;</p>  <!-- Display: 夓 -->

URL Encoding:

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

Encodings

MD5:

0aa74413d6d4d5b69acd8753730b3ab7

SHA1:

0905d21910628f793d94a939951e14bc13d88386

Base64:

5aST