Unicode Finder

"컈" U+CEC8(HANGUL SYLLABLE KYAE)

U+CEC8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYAE

Programming

C
\uCEC8
JavaScript
\uCEC8
Java
\uCEC8
Json
\uCEC8
Python
\uCEC8
Perl
\x{CEC8}
PHP
\x{CEC8}
Ruby
\u{CEC8}
Rust
\u{CEC8}
Go
\uCEC8

Web

CSS
\00CEC8
HtmlDecimal
컈
HtmlHexadecimal
컈
Url
%EC%BB%88

Code

MD5
ecfa7d87786ba1cc9a8d00b0b2567c2d
Sha1
e542d9beb4590c0108472d721597de55e542fc02
Base64
7LuI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCEC8';
console.log(char);  // Output: 컈

Java:

char c = '\uCEC8';
System.out.println(c);  // Output: 컈

JSON:

{"text": "\uCEC8"}  // Value: 컈

Python:

char = '\uCEC8'
print(char)  # Output: 컈

Perl:

my $char = "\x{CEC8}";
print $char;  # Output: 컈

PHP:

$char = "\x{CEC8}";
echo $char;  // Output: 컈

Ruby:

char = "\u{CEC8}"
puts char  # Output: 컈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52936;</p>  <!-- Display: 컈 -->

HTML Hexadecimal:

<p>HTML hex: &#xCEC8;</p>  <!-- Display: 컈 -->

URL Encoding:

// 컈 URL encoding
https://unicodefinder.com/search.php?query=%EC%BB%88

Encodings

MD5:

ecfa7d87786ba1cc9a8d00b0b2567c2d

SHA1:

e542d9beb4590c0108472d721597de55e542fc02

Base64:

7LuI