Unicode Finder

"셏" U+C14F(HANGUL SYLLABLE SEC)

U+C14F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEC

Programming

C
\uC14F
JavaScript
\uC14F
Java
\uC14F
Json
\uC14F
Python
\uC14F
Perl
\x{C14F}
PHP
\x{C14F}
Ruby
\u{C14F}
Rust
\u{C14F}
Go
\uC14F

Web

CSS
\00C14F
HtmlDecimal
셏
HtmlHexadecimal
셏
Url
%EC%85%8F

Code

MD5
bfa0ac1546e48cbbf33d669ec3e5dd81
Sha1
f606065fc84a162a4e973d9f3a81a0802c5a0f73
Base64
7IWP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC14F';
console.log(char);  // Output: 셏

Java:

char c = '\uC14F';
System.out.println(c);  // Output: 셏

JSON:

{"text": "\uC14F"}  // Value: 셏

Python:

char = '\uC14F'
print(char)  # Output: 셏

Perl:

my $char = "\x{C14F}";
print $char;  # Output: 셏

PHP:

$char = "\x{C14F}";
echo $char;  // Output: 셏

Ruby:

char = "\u{C14F}"
puts char  # Output: 셏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49487;</p>  <!-- Display: 셏 -->

HTML Hexadecimal:

<p>HTML hex: &#xC14F;</p>  <!-- Display: 셏 -->

URL Encoding:

// 셏 URL encoding
https://unicodefinder.com/search.php?query=%EC%85%8F

Encodings

MD5:

bfa0ac1546e48cbbf33d669ec3e5dd81

SHA1:

f606065fc84a162a4e973d9f3a81a0802c5a0f73

Base64:

7IWP