Unicode Finder

"싫" U+C2EB(HANGUL SYLLABLE SILH)

U+C2EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SILH

Programming

C
\uC2EB
JavaScript
\uC2EB
Java
\uC2EB
Json
\uC2EB
Python
\uC2EB
Perl
\x{C2EB}
PHP
\x{C2EB}
Ruby
\u{C2EB}
Rust
\u{C2EB}
Go
\uC2EB

Web

CSS
\00C2EB
HtmlDecimal
싫
HtmlHexadecimal
싫
Url
%EC%8B%AB

Code

MD5
e2922ea97cbf5a438de6b762944ab362
Sha1
faef249f01c3a6ab67e314cfa576e8279e0d5f88
Base64
7Iur

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2EB';
console.log(char);  // Output: 싫

Java:

char c = '\uC2EB';
System.out.println(c);  // Output: 싫

JSON:

{"text": "\uC2EB"}  // Value: 싫

Python:

char = '\uC2EB'
print(char)  # Output: 싫

Perl:

my $char = "\x{C2EB}";
print $char;  # Output: 싫

PHP:

$char = "\x{C2EB}";
echo $char;  // Output: 싫

Ruby:

char = "\u{C2EB}"
puts char  # Output: 싫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49899;</p>  <!-- Display: 싫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2EB;</p>  <!-- Display: 싫 -->

URL Encoding:

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

Encodings

MD5:

e2922ea97cbf5a438de6b762944ab362

SHA1:

faef249f01c3a6ab67e314cfa576e8279e0d5f88

Base64:

7Iur