Unicode Finder

"쇮" U+C1EE(HANGUL SYLLABLE SOELP)

U+C1EE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOELP

Programming

C
\uC1EE
JavaScript
\uC1EE
Java
\uC1EE
Json
\uC1EE
Python
\uC1EE
Perl
\x{C1EE}
PHP
\x{C1EE}
Ruby
\u{C1EE}
Rust
\u{C1EE}
Go
\uC1EE

Web

CSS
\00C1EE
HtmlDecimal
쇮
HtmlHexadecimal
쇮
Url
%EC%87%AE

Code

MD5
71d583a868d45162e3f0e4561eb6318a
Sha1
0d712931ea48a07de039a4f37ea945f8fe43c08f
Base64
7Ieu

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1EE';
console.log(char);  // Output: 쇮

Java:

char c = '\uC1EE';
System.out.println(c);  // Output: 쇮

JSON:

{"text": "\uC1EE"}  // Value: 쇮

Python:

char = '\uC1EE'
print(char)  # Output: 쇮

Perl:

my $char = "\x{C1EE}";
print $char;  # Output: 쇮

PHP:

$char = "\x{C1EE}";
echo $char;  // Output: 쇮

Ruby:

char = "\u{C1EE}"
puts char  # Output: 쇮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49646;</p>  <!-- Display: 쇮 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1EE;</p>  <!-- Display: 쇮 -->

URL Encoding:

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

Encodings

MD5:

71d583a868d45162e3f0e4561eb6318a

SHA1:

0d712931ea48a07de039a4f37ea945f8fe43c08f

Base64:

7Ieu