Unicode Finder

"쇈" U+C1C8(HANGUL SYLLABLE SWAEN)

U+C1C8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SWAEN

Programming

C
\uC1C8
JavaScript
\uC1C8
Java
\uC1C8
Json
\uC1C8
Python
\uC1C8
Perl
\x{C1C8}
PHP
\x{C1C8}
Ruby
\u{C1C8}
Rust
\u{C1C8}
Go
\uC1C8

Web

CSS
\00C1C8
HtmlDecimal
쇈
HtmlHexadecimal
쇈
Url
%EC%87%88

Code

MD5
1a7336c1f6a4ea353d4dfaf0ba1dbc25
Sha1
a2bdf6209c454ba8ec45cd354b343c80221db795
Base64
7IeI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1C8';
console.log(char);  // Output: 쇈

Java:

char c = '\uC1C8';
System.out.println(c);  // Output: 쇈

JSON:

{"text": "\uC1C8"}  // Value: 쇈

Python:

char = '\uC1C8'
print(char)  # Output: 쇈

Perl:

my $char = "\x{C1C8}";
print $char;  # Output: 쇈

PHP:

$char = "\x{C1C8}";
echo $char;  // Output: 쇈

Ruby:

char = "\u{C1C8}"
puts char  # Output: 쇈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49608;</p>  <!-- Display: 쇈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1C8;</p>  <!-- Display: 쇈 -->

URL Encoding:

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

Encodings

MD5:

1a7336c1f6a4ea353d4dfaf0ba1dbc25

SHA1:

a2bdf6209c454ba8ec45cd354b343c80221db795

Base64:

7IeI