Unicode Finder

"夕" U+5915(CJK UNIFIED IDEOGRAPH-5915)

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

Programming

C
\u5915
JavaScript
\u5915
Java
\u5915
Json
\u5915
Python
\u5915
Perl
\x{5915}
PHP
\x{5915}
Ruby
\u{5915}
Rust
\u{5915}
Go
\u5915

Web

CSS
\005915
HtmlDecimal
夕
HtmlHexadecimal
夕
Url
%E5%A4%95

Code

MD5
47e0d0f6fe26f82fce7804221e0d9129
Sha1
396fddaec67c19f3754eb27d61d1444b9606b60e
Base64
5aSV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5915';
console.log(char);  // Output: 夕

Java:

char c = '\u5915';
System.out.println(c);  // Output: 夕

JSON:

{"text": "\u5915"}  // Value: 夕

Python:

char = '\u5915'
print(char)  # Output: 夕

Perl:

my $char = "\x{5915}";
print $char;  # Output: 夕

PHP:

$char = "\x{5915}";
echo $char;  // Output: 夕

Ruby:

char = "\u{5915}"
puts char  # Output: 夕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005915";  /* Display: 夕 */
}

HTML Decimal:

<p>HTML decimal: &#22805;</p>  <!-- Display: 夕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5915;</p>  <!-- Display: 夕 -->

URL Encoding:

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

Encodings

MD5:

47e0d0f6fe26f82fce7804221e0d9129

SHA1:

396fddaec67c19f3754eb27d61d1444b9606b60e

Base64:

5aSV