Unicode Finder

"싨" U+C2E8(HANGUL SYLLABLE SILS)

U+C2E8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SILS

Programming

C
\uC2E8
JavaScript
\uC2E8
Java
\uC2E8
Json
\uC2E8
Python
\uC2E8
Perl
\x{C2E8}
PHP
\x{C2E8}
Ruby
\u{C2E8}
Rust
\u{C2E8}
Go
\uC2E8

Web

CSS
\00C2E8
HtmlDecimal
싨
HtmlHexadecimal
싨
Url
%EC%8B%A8

Code

MD5
8276b5e661c0e14144c3e70c45c09518
Sha1
22b4a30ef7b8a26e73c3c1de63c421dd163625cc
Base64
7Iuo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2E8';
console.log(char);  // Output: 싨

Java:

char c = '\uC2E8';
System.out.println(c);  // Output: 싨

JSON:

{"text": "\uC2E8"}  // Value: 싨

Python:

char = '\uC2E8'
print(char)  # Output: 싨

Perl:

my $char = "\x{C2E8}";
print $char;  # Output: 싨

PHP:

$char = "\x{C2E8}";
echo $char;  // Output: 싨

Ruby:

char = "\u{C2E8}"
puts char  # Output: 싨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49896;</p>  <!-- Display: 싨 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2E8;</p>  <!-- Display: 싨 -->

URL Encoding:

// 싨 URL encoding
https://unicodefinder.com/search.php?query=%EC%8B%A8

Encodings

MD5:

8276b5e661c0e14144c3e70c45c09518

SHA1:

22b4a30ef7b8a26e73c3c1de63c421dd163625cc

Base64:

7Iuo