Unicode Finder

"캌" U+CE8C(HANGUL SYLLABLE KAK)

U+CE8C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KAK

Programming

C
\uCE8C
JavaScript
\uCE8C
Java
\uCE8C
Json
\uCE8C
Python
\uCE8C
Perl
\x{CE8C}
PHP
\x{CE8C}
Ruby
\u{CE8C}
Rust
\u{CE8C}
Go
\uCE8C

Web

CSS
\00CE8C
HtmlDecimal
캌
HtmlHexadecimal
캌
Url
%EC%BA%8C

Code

MD5
23d16fcefce755f0e43fb3eb5900446b
Sha1
454fd49ba9620830138da67bd7ac2744a1cff6fc
Base64
7LqM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCE8C';
console.log(char);  // Output: 캌

Java:

char c = '\uCE8C';
System.out.println(c);  // Output: 캌

JSON:

{"text": "\uCE8C"}  // Value: 캌

Python:

char = '\uCE8C'
print(char)  # Output: 캌

Perl:

my $char = "\x{CE8C}";
print $char;  # Output: 캌

PHP:

$char = "\x{CE8C}";
echo $char;  // Output: 캌

Ruby:

char = "\u{CE8C}"
puts char  # Output: 캌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52876;</p>  <!-- Display: 캌 -->

HTML Hexadecimal:

<p>HTML hex: &#xCE8C;</p>  <!-- Display: 캌 -->

URL Encoding:

// 캌 URL encoding
https://unicodefinder.com/search.php?query=%EC%BA%8C

Encodings

MD5:

23d16fcefce755f0e43fb3eb5900446b

SHA1:

454fd49ba9620830138da67bd7ac2744a1cff6fc

Base64:

7LqM