Unicode Finder

"섖" U+C116(HANGUL SYLLABLE SYAEJ)

U+C116
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEJ

Programming

C
\uC116
JavaScript
\uC116
Java
\uC116
Json
\uC116
Python
\uC116
Perl
\x{C116}
PHP
\x{C116}
Ruby
\u{C116}
Rust
\u{C116}
Go
\uC116

Web

CSS
\00C116
HtmlDecimal
섖
HtmlHexadecimal
섖
Url
%EC%84%96

Code

MD5
f8b7c55d53bf9447114d29cf505d2a07
Sha1
ba8328ab3f39376c0e09f6ce5113b2ceec0118bd
Base64
7ISW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC116';
console.log(char);  // Output: 섖

Java:

char c = '\uC116';
System.out.println(c);  // Output: 섖

JSON:

{"text": "\uC116"}  // Value: 섖

Python:

char = '\uC116'
print(char)  # Output: 섖

Perl:

my $char = "\x{C116}";
print $char;  # Output: 섖

PHP:

$char = "\x{C116}";
echo $char;  // Output: 섖

Ruby:

char = "\u{C116}"
puts char  # Output: 섖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49430;</p>  <!-- Display: 섖 -->

HTML Hexadecimal:

<p>HTML hex: &#xC116;</p>  <!-- Display: 섖 -->

URL Encoding:

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

Encodings

MD5:

f8b7c55d53bf9447114d29cf505d2a07

SHA1:

ba8328ab3f39376c0e09f6ce5113b2ceec0118bd

Base64:

7ISW