Unicode Finder

"셂" U+C142(HANGUL SYLLABLE SELM)

U+C142
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SELM

Programming

C
\uC142
JavaScript
\uC142
Java
\uC142
Json
\uC142
Python
\uC142
Perl
\x{C142}
PHP
\x{C142}
Ruby
\u{C142}
Rust
\u{C142}
Go
\uC142

Web

CSS
\00C142
HtmlDecimal
셂
HtmlHexadecimal
셂
Url
%EC%85%82

Code

MD5
45d001b4e01487f369a5b5d6341e6e3e
Sha1
af071d399010558e8e25dbc4f392cc4712fc0f25
Base64
7IWC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC142';
console.log(char);  // Output: 셂

Java:

char c = '\uC142';
System.out.println(c);  // Output: 셂

JSON:

{"text": "\uC142"}  // Value: 셂

Python:

char = '\uC142'
print(char)  # Output: 셂

Perl:

my $char = "\x{C142}";
print $char;  # Output: 셂

PHP:

$char = "\x{C142}";
echo $char;  // Output: 셂

Ruby:

char = "\u{C142}"
puts char  # Output: 셂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49474;</p>  <!-- Display: 셂 -->

HTML Hexadecimal:

<p>HTML hex: &#xC142;</p>  <!-- Display: 셂 -->

URL Encoding:

// 셂 URL encoding
https://unicodefinder.com/search.php?query=%EC%85%82

Encodings

MD5:

45d001b4e01487f369a5b5d6341e6e3e

SHA1:

af071d399010558e8e25dbc4f392cc4712fc0f25

Base64:

7IWC