Unicode Finder

"섛" U+C11B(HANGUL SYLLABLE SYAEH)

U+C11B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAEH

Programming

C
\uC11B
JavaScript
\uC11B
Java
\uC11B
Json
\uC11B
Python
\uC11B
Perl
\x{C11B}
PHP
\x{C11B}
Ruby
\u{C11B}
Rust
\u{C11B}
Go
\uC11B

Web

CSS
\00C11B
HtmlDecimal
섛
HtmlHexadecimal
섛
Url
%EC%84%9B

Code

MD5
71c34bd29fcad3ebd002334aec24c8fb
Sha1
add7e593667b6b4e741da3ec434051a42543d206
Base64
7ISb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC11B';
console.log(char);  // Output: 섛

Java:

char c = '\uC11B';
System.out.println(c);  // Output: 섛

JSON:

{"text": "\uC11B"}  // Value: 섛

Python:

char = '\uC11B'
print(char)  # Output: 섛

Perl:

my $char = "\x{C11B}";
print $char;  # Output: 섛

PHP:

$char = "\x{C11B}";
echo $char;  // Output: 섛

Ruby:

char = "\u{C11B}"
puts char  # Output: 섛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49435;</p>  <!-- Display: 섛 -->

HTML Hexadecimal:

<p>HTML hex: &#xC11B;</p>  <!-- Display: 섛 -->

URL Encoding:

// 섛 URL encoding
https://unicodefinder.com/search.php?query=%EC%84%9B

Encodings

MD5:

71c34bd29fcad3ebd002334aec24c8fb

SHA1:

add7e593667b6b4e741da3ec434051a42543d206

Base64:

7ISb