Unicode Finder

"섐" U+C110(HANGUL SYLLABLE SYAEM)

U+C110
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEM

Programming

C
\uC110
JavaScript
\uC110
Java
\uC110
Json
\uC110
Python
\uC110
Perl
\x{C110}
PHP
\x{C110}
Ruby
\u{C110}
Rust
\u{C110}
Go
\uC110

Web

CSS
\00C110
HtmlDecimal
섐
HtmlHexadecimal
섐
Url
%EC%84%90

Code

MD5
89fadd1f694d04a3ebb884b7a58b1617
Sha1
f689b3e42223f7729a003443abda3d2262be5201
Base64
7ISQ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC110';
console.log(char);  // Output: 섐

Java:

char c = '\uC110';
System.out.println(c);  // Output: 섐

JSON:

{"text": "\uC110"}  // Value: 섐

Python:

char = '\uC110'
print(char)  # Output: 섐

Perl:

my $char = "\x{C110}";
print $char;  # Output: 섐

PHP:

$char = "\x{C110}";
echo $char;  // Output: 섐

Ruby:

char = "\u{C110}"
puts char  # Output: 섐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49424;</p>  <!-- Display: 섐 -->

HTML Hexadecimal:

<p>HTML hex: &#xC110;</p>  <!-- Display: 섐 -->

URL Encoding:

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

Encodings

MD5:

89fadd1f694d04a3ebb884b7a58b1617

SHA1:

f689b3e42223f7729a003443abda3d2262be5201

Base64:

7ISQ