Unicode Finder

"섟" U+C11F(HANGUL SYLLABLE SEOGS)

U+C11F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEOGS

Programming

C
\uC11F
JavaScript
\uC11F
Java
\uC11F
Json
\uC11F
Python
\uC11F
Perl
\x{C11F}
PHP
\x{C11F}
Ruby
\u{C11F}
Rust
\u{C11F}
Go
\uC11F

Web

CSS
\00C11F
HtmlDecimal
섟
HtmlHexadecimal
섟
Url
%EC%84%9F

Code

MD5
240b3b41a7107a7f5397aafa032d22a4
Sha1
181d4857f84891e62f5ebe66cc14f83202ba622d
Base64
7ISf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC11F';
console.log(char);  // Output: 섟

Java:

char c = '\uC11F';
System.out.println(c);  // Output: 섟

JSON:

{"text": "\uC11F"}  // Value: 섟

Python:

char = '\uC11F'
print(char)  # Output: 섟

Perl:

my $char = "\x{C11F}";
print $char;  # Output: 섟

PHP:

$char = "\x{C11F}";
echo $char;  // Output: 섟

Ruby:

char = "\u{C11F}"
puts char  # Output: 섟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49439;</p>  <!-- Display: 섟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC11F;</p>  <!-- Display: 섟 -->

URL Encoding:

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

Encodings

MD5:

240b3b41a7107a7f5397aafa032d22a4

SHA1:

181d4857f84891e62f5ebe66cc14f83202ba622d

Base64:

7ISf