Unicode Finder

"칬" U+CE6C(HANGUL SYLLABLE CISS)

U+CE6C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CISS

Programming

C
\uCE6C
JavaScript
\uCE6C
Java
\uCE6C
Json
\uCE6C
Python
\uCE6C
Perl
\x{CE6C}
PHP
\x{CE6C}
Ruby
\u{CE6C}
Rust
\u{CE6C}
Go
\uCE6C

Web

CSS
\00CE6C
HtmlDecimal
칬
HtmlHexadecimal
칬
Url
%EC%B9%AC

Code

MD5
e43287309758663cfa4fa85e8ad2f207
Sha1
09abe006fc64860d0566a85477eb8e8c10f11c59
Base64
7Lms

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCE6C';
console.log(char);  // Output: 칬

Java:

char c = '\uCE6C';
System.out.println(c);  // Output: 칬

JSON:

{"text": "\uCE6C"}  // Value: 칬

Python:

char = '\uCE6C'
print(char)  # Output: 칬

Perl:

my $char = "\x{CE6C}";
print $char;  # Output: 칬

PHP:

$char = "\x{CE6C}";
echo $char;  // Output: 칬

Ruby:

char = "\u{CE6C}"
puts char  # Output: 칬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52844;</p>  <!-- Display: 칬 -->

HTML Hexadecimal:

<p>HTML hex: &#xCE6C;</p>  <!-- Display: 칬 -->

URL Encoding:

// 칬 URL encoding
https://unicodefinder.com/search.php?query=%EC%B9%AC

Encodings

MD5:

e43287309758663cfa4fa85e8ad2f207

SHA1:

09abe006fc64860d0566a85477eb8e8c10f11c59

Base64:

7Lms