Unicode Finder

"쇡" U+C1E1(HANGUL SYLLABLE SOEG)

U+C1E1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOEG

Programming

C
\uC1E1
JavaScript
\uC1E1
Java
\uC1E1
Json
\uC1E1
Python
\uC1E1
Perl
\x{C1E1}
PHP
\x{C1E1}
Ruby
\u{C1E1}
Rust
\u{C1E1}
Go
\uC1E1

Web

CSS
\00C1E1
HtmlDecimal
쇡
HtmlHexadecimal
쇡
Url
%EC%87%A1

Code

MD5
180cc81f07d7b47f31498d35bea1e6cb
Sha1
d1a8b4ee8aca564171a90768da82dbdd705bc18c
Base64
7Ieh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1E1';
console.log(char);  // Output: 쇡

Java:

char c = '\uC1E1';
System.out.println(c);  // Output: 쇡

JSON:

{"text": "\uC1E1"}  // Value: 쇡

Python:

char = '\uC1E1'
print(char)  # Output: 쇡

Perl:

my $char = "\x{C1E1}";
print $char;  # Output: 쇡

PHP:

$char = "\x{C1E1}";
echo $char;  // Output: 쇡

Ruby:

char = "\u{C1E1}"
puts char  # Output: 쇡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49633;</p>  <!-- Display: 쇡 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1E1;</p>  <!-- Display: 쇡 -->

URL Encoding:

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

Encodings

MD5:

180cc81f07d7b47f31498d35bea1e6cb

SHA1:

d1a8b4ee8aca564171a90768da82dbdd705bc18c

Base64:

7Ieh