Unicode Finder

"엫" U+C5EB(HANGUL SYLLABLE EH)

U+C5EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE EH

Programming

C
\uC5EB
JavaScript
\uC5EB
Java
\uC5EB
Json
\uC5EB
Python
\uC5EB
Perl
\x{C5EB}
PHP
\x{C5EB}
Ruby
\u{C5EB}
Rust
\u{C5EB}
Go
\uC5EB

Web

CSS
\00C5EB
HtmlDecimal
엫
HtmlHexadecimal
엫
Url
%EC%97%AB

Code

MD5
3667c20616773dd455fabc243dcb4a0d
Sha1
43964dc51d867c991c46621fc9f0a2c1f79027e2
Base64
7Jer

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5EB';
console.log(char);  // Output: 엫

Java:

char c = '\uC5EB';
System.out.println(c);  // Output: 엫

JSON:

{"text": "\uC5EB"}  // Value: 엫

Python:

char = '\uC5EB'
print(char)  # Output: 엫

Perl:

my $char = "\x{C5EB}";
print $char;  # Output: 엫

PHP:

$char = "\x{C5EB}";
echo $char;  // Output: 엫

Ruby:

char = "\u{C5EB}"
puts char  # Output: 엫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50667;</p>  <!-- Display: 엫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5EB;</p>  <!-- Display: 엫 -->

URL Encoding:

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

Encodings

MD5:

3667c20616773dd455fabc243dcb4a0d

SHA1:

43964dc51d867c991c46621fc9f0a2c1f79027e2

Base64:

7Jer