Unicode Finder

"엸" U+C5F8(HANGUL SYLLABLE YEOLS)

U+C5F8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YEOLS

Programming

C
\uC5F8
JavaScript
\uC5F8
Java
\uC5F8
Json
\uC5F8
Python
\uC5F8
Perl
\x{C5F8}
PHP
\x{C5F8}
Ruby
\u{C5F8}
Rust
\u{C5F8}
Go
\uC5F8

Web

CSS
\00C5F8
HtmlDecimal
엸
HtmlHexadecimal
엸
Url
%EC%97%B8

Code

MD5
6d1a6afbcbb7e79166da35694f78fe94
Sha1
2025c8c6f62f90426420227f245bd16b87d799d8
Base64
7Je4

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5F8';
console.log(char);  // Output: 엸

Java:

char c = '\uC5F8';
System.out.println(c);  // Output: 엸

JSON:

{"text": "\uC5F8"}  // Value: 엸

Python:

char = '\uC5F8'
print(char)  # Output: 엸

Perl:

my $char = "\x{C5F8}";
print $char;  # Output: 엸

PHP:

$char = "\x{C5F8}";
echo $char;  // Output: 엸

Ruby:

char = "\u{C5F8}"
puts char  # Output: 엸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00C5F8";  /* Display: 엸 */
}

HTML Decimal:

<p>HTML decimal: &#50680;</p>  <!-- Display: 엸 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5F8;</p>  <!-- Display: 엸 -->

URL Encoding:

// 엸 URL encoding
https://unicodefinder.com/search.php?query=%EC%97%B8

Encodings

MD5:

6d1a6afbcbb7e79166da35694f78fe94

SHA1:

2025c8c6f62f90426420227f245bd16b87d799d8

Base64:

7Je4