Unicode Finder

"엢" U+C5E2(HANGUL SYLLABLE EBS)

U+C5E2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE EBS

Programming

C
\uC5E2
JavaScript
\uC5E2
Java
\uC5E2
Json
\uC5E2
Python
\uC5E2
Perl
\x{C5E2}
PHP
\x{C5E2}
Ruby
\u{C5E2}
Rust
\u{C5E2}
Go
\uC5E2

Web

CSS
\00C5E2
HtmlDecimal
엢
HtmlHexadecimal
엢
Url
%EC%97%A2

Code

MD5
3a7025fa3b75ee0785ed413286a936a5
Sha1
023710420afdb74b1cf6c197edc04a6ce0b635f1
Base64
7Jei

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5E2';
console.log(char);  // Output: 엢

Java:

char c = '\uC5E2';
System.out.println(c);  // Output: 엢

JSON:

{"text": "\uC5E2"}  // Value: 엢

Python:

char = '\uC5E2'
print(char)  # Output: 엢

Perl:

my $char = "\x{C5E2}";
print $char;  # Output: 엢

PHP:

$char = "\x{C5E2}";
echo $char;  // Output: 엢

Ruby:

char = "\u{C5E2}"
puts char  # Output: 엢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50658;</p>  <!-- Display: 엢 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5E2;</p>  <!-- Display: 엢 -->

URL Encoding:

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

Encodings

MD5:

3a7025fa3b75ee0785ed413286a936a5

SHA1:

023710420afdb74b1cf6c197edc04a6ce0b635f1

Base64:

7Jei