Unicode Finder

"섈" U+C108(HANGUL SYLLABLE SYAEL)

U+C108
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEL

Programming

C
\uC108
JavaScript
\uC108
Java
\uC108
Json
\uC108
Python
\uC108
Perl
\x{C108}
PHP
\x{C108}
Ruby
\u{C108}
Rust
\u{C108}
Go
\uC108

Web

CSS
\00C108
HtmlDecimal
섈
HtmlHexadecimal
섈
Url
%EC%84%88

Code

MD5
00ce9dad82134eaf9de8b03f6b849148
Sha1
fce0ee97be2923ff73ab2951c6be0cc3e662bdc5
Base64
7ISI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC108';
console.log(char);  // Output: 섈

Java:

char c = '\uC108';
System.out.println(c);  // Output: 섈

JSON:

{"text": "\uC108"}  // Value: 섈

Python:

char = '\uC108'
print(char)  # Output: 섈

Perl:

my $char = "\x{C108}";
print $char;  # Output: 섈

PHP:

$char = "\x{C108}";
echo $char;  // Output: 섈

Ruby:

char = "\u{C108}"
puts char  # Output: 섈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49416;</p>  <!-- Display: 섈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC108;</p>  <!-- Display: 섈 -->

URL Encoding:

// 섈 URL encoding
https://unicodefinder.com/search.php?query=%EC%84%88

Encodings

MD5:

00ce9dad82134eaf9de8b03f6b849148

SHA1:

fce0ee97be2923ff73ab2951c6be0cc3e662bdc5

Base64:

7ISI