Unicode Finder

"슎" U+C28E(HANGUL SYLLABLE SYUNH)

U+C28E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYUNH

Programming

C
\uC28E
JavaScript
\uC28E
Java
\uC28E
Json
\uC28E
Python
\uC28E
Perl
\x{C28E}
PHP
\x{C28E}
Ruby
\u{C28E}
Rust
\u{C28E}
Go
\uC28E

Web

CSS
\00C28E
HtmlDecimal
슎
HtmlHexadecimal
슎
Url
%EC%8A%8E

Code

MD5
12dcc6f03ec95057c97325c00a289e77
Sha1
ee837c47fc3ee9abfcb5340def9ed4857f8d4196
Base64
7IqO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC28E';
console.log(char);  // Output: 슎

Java:

char c = '\uC28E';
System.out.println(c);  // Output: 슎

JSON:

{"text": "\uC28E"}  // Value: 슎

Python:

char = '\uC28E'
print(char)  # Output: 슎

Perl:

my $char = "\x{C28E}";
print $char;  # Output: 슎

PHP:

$char = "\x{C28E}";
echo $char;  // Output: 슎

Ruby:

char = "\u{C28E}"
puts char  # Output: 슎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49806;</p>  <!-- Display: 슎 -->

HTML Hexadecimal:

<p>HTML hex: &#xC28E;</p>  <!-- Display: 슎 -->

URL Encoding:

// 슎 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%8E

Encodings

MD5:

12dcc6f03ec95057c97325c00a289e77

SHA1:

ee837c47fc3ee9abfcb5340def9ed4857f8d4196

Base64:

7IqO