Unicode Finder

"쏬" U+C3EC(HANGUL SYLLABLE SSOSS)

U+C3EC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSOSS

Programming

C
\uC3EC
JavaScript
\uC3EC
Java
\uC3EC
Json
\uC3EC
Python
\uC3EC
Perl
\x{C3EC}
PHP
\x{C3EC}
Ruby
\u{C3EC}
Rust
\u{C3EC}
Go
\uC3EC

Web

CSS
\00C3EC
HtmlDecimal
쏬
HtmlHexadecimal
쏬
Url
%EC%8F%AC

Code

MD5
f700c5f1c8dccc21f8fa89299266546e
Sha1
86422ee7d184f7ac52953b31b29dd8976f5d22d4
Base64
7I+s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3EC';
console.log(char);  // Output: 쏬

Java:

char c = '\uC3EC';
System.out.println(c);  // Output: 쏬

JSON:

{"text": "\uC3EC"}  // Value: 쏬

Python:

char = '\uC3EC'
print(char)  # Output: 쏬

Perl:

my $char = "\x{C3EC}";
print $char;  # Output: 쏬

PHP:

$char = "\x{C3EC}";
echo $char;  // Output: 쏬

Ruby:

char = "\u{C3EC}"
puts char  # Output: 쏬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50156;</p>  <!-- Display: 쏬 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3EC;</p>  <!-- Display: 쏬 -->

URL Encoding:

// 쏬 URL encoding
https://unicodefinder.com/search.php?query=%EC%8F%AC

Encodings

MD5:

f700c5f1c8dccc21f8fa89299266546e

SHA1:

86422ee7d184f7ac52953b31b29dd8976f5d22d4

Base64:

7I+s