Unicode Finder

"섗" U+C117(HANGUL SYLLABLE SYAEC)

U+C117
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEC

Programming

C
\uC117
JavaScript
\uC117
Java
\uC117
Json
\uC117
Python
\uC117
Perl
\x{C117}
PHP
\x{C117}
Ruby
\u{C117}
Rust
\u{C117}
Go
\uC117

Web

CSS
\00C117
HtmlDecimal
섗
HtmlHexadecimal
섗
Url
%EC%84%97

Code

MD5
48d1be09f9f4b38cc47f99336be81cf7
Sha1
dd9b3814b568e0e8f05853e5e6c042b6d6bce52c
Base64
7ISX

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC117';
console.log(char);  // Output: 섗

Java:

char c = '\uC117';
System.out.println(c);  // Output: 섗

JSON:

{"text": "\uC117"}  // Value: 섗

Python:

char = '\uC117'
print(char)  # Output: 섗

Perl:

my $char = "\x{C117}";
print $char;  # Output: 섗

PHP:

$char = "\x{C117}";
echo $char;  // Output: 섗

Ruby:

char = "\u{C117}"
puts char  # Output: 섗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49431;</p>  <!-- Display: 섗 -->

HTML Hexadecimal:

<p>HTML hex: &#xC117;</p>  <!-- Display: 섗 -->

URL Encoding:

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

Encodings

MD5:

48d1be09f9f4b38cc47f99336be81cf7

SHA1:

dd9b3814b568e0e8f05853e5e6c042b6d6bce52c

Base64:

7ISX