Unicode Finder

"섒" U+C112(HANGUL SYLLABLE SYAEBS)

U+C112
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEBS

Programming

C
\uC112
JavaScript
\uC112
Java
\uC112
Json
\uC112
Python
\uC112
Perl
\x{C112}
PHP
\x{C112}
Ruby
\u{C112}
Rust
\u{C112}
Go
\uC112

Web

CSS
\00C112
HtmlDecimal
섒
HtmlHexadecimal
섒
Url
%EC%84%92

Code

MD5
0f235d1a4d36ee30b77db37491ad4174
Sha1
c6c44f2cbe23f1051a9b5d19b03fc76cc03da653
Base64
7ISS

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC112';
console.log(char);  // Output: 섒

Java:

char c = '\uC112';
System.out.println(c);  // Output: 섒

JSON:

{"text": "\uC112"}  // Value: 섒

Python:

char = '\uC112'
print(char)  # Output: 섒

Perl:

my $char = "\x{C112}";
print $char;  # Output: 섒

PHP:

$char = "\x{C112}";
echo $char;  // Output: 섒

Ruby:

char = "\u{C112}"
puts char  # Output: 섒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49426;</p>  <!-- Display: 섒 -->

HTML Hexadecimal:

<p>HTML hex: &#xC112;</p>  <!-- Display: 섒 -->

URL Encoding:

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

Encodings

MD5:

0f235d1a4d36ee30b77db37491ad4174

SHA1:

c6c44f2cbe23f1051a9b5d19b03fc76cc03da653

Base64:

7ISS