Unicode Finder

"컨" U+CEE8(HANGUL SYLLABLE KEON)

U+CEE8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KEON

Programming

C
\uCEE8
JavaScript
\uCEE8
Java
\uCEE8
Json
\uCEE8
Python
\uCEE8
Perl
\x{CEE8}
PHP
\x{CEE8}
Ruby
\u{CEE8}
Rust
\u{CEE8}
Go
\uCEE8

Web

CSS
\00CEE8
HtmlDecimal
컨
HtmlHexadecimal
컨
Url
%EC%BB%A8

Code

MD5
a63d477d7d0be7a4a29a15d1ab45423f
Sha1
22b8c7552cd03cefae1d6f45967a3651229dee46
Base64
7Luo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCEE8';
console.log(char);  // Output: 컨

Java:

char c = '\uCEE8';
System.out.println(c);  // Output: 컨

JSON:

{"text": "\uCEE8"}  // Value: 컨

Python:

char = '\uCEE8'
print(char)  # Output: 컨

Perl:

my $char = "\x{CEE8}";
print $char;  # Output: 컨

PHP:

$char = "\x{CEE8}";
echo $char;  // Output: 컨

Ruby:

char = "\u{CEE8}"
puts char  # Output: 컨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52968;</p>  <!-- Display: 컨 -->

HTML Hexadecimal:

<p>HTML hex: &#xCEE8;</p>  <!-- Display: 컨 -->

URL Encoding:

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

Encodings

MD5:

a63d477d7d0be7a4a29a15d1ab45423f

SHA1:

22b8c7552cd03cefae1d6f45967a3651229dee46

Base64:

7Luo