Unicode Finder

"쇀" U+C1C0(HANGUL SYLLABLE SWAK)

U+C1C0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAK

Programming

C
\uC1C0
JavaScript
\uC1C0
Java
\uC1C0
Json
\uC1C0
Python
\uC1C0
Perl
\x{C1C0}
PHP
\x{C1C0}
Ruby
\u{C1C0}
Rust
\u{C1C0}
Go
\uC1C0

Web

CSS
\00C1C0
HtmlDecimal
쇀
HtmlHexadecimal
쇀
Url
%EC%87%80

Code

MD5
4e4d0fb6ce93f8420fa50be7a8f06e96
Sha1
36819609a4290ebe85e34f5fd07c7f4060a04142
Base64
7IeA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1C0';
console.log(char);  // Output: 쇀

Java:

char c = '\uC1C0';
System.out.println(c);  // Output: 쇀

JSON:

{"text": "\uC1C0"}  // Value: 쇀

Python:

char = '\uC1C0'
print(char)  # Output: 쇀

Perl:

my $char = "\x{C1C0}";
print $char;  # Output: 쇀

PHP:

$char = "\x{C1C0}";
echo $char;  // Output: 쇀

Ruby:

char = "\u{C1C0}"
puts char  # Output: 쇀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49600;</p>  <!-- Display: 쇀 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1C0;</p>  <!-- Display: 쇀 -->

URL Encoding:

// 쇀 URL encoding
https://unicodefinder.com/search.php?query=%EC%87%80

Encodings

MD5:

4e4d0fb6ce93f8420fa50be7a8f06e96

SHA1:

36819609a4290ebe85e34f5fd07c7f4060a04142

Base64:

7IeA