Unicode Finder

"셳" U+C173(HANGUL SYLLABLE SYEGS)

U+C173
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYEGS

Programming

C
\uC173
JavaScript
\uC173
Java
\uC173
Json
\uC173
Python
\uC173
Perl
\x{C173}
PHP
\x{C173}
Ruby
\u{C173}
Rust
\u{C173}
Go
\uC173

Web

CSS
\00C173
HtmlDecimal
셳
HtmlHexadecimal
셳
Url
%EC%85%B3

Code

MD5
66b1c7c07e3a1aac30509d3ff45561f9
Sha1
43fd0c30ae542b1f2355d5845d806b7b0578f125
Base64
7IWz

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC173';
console.log(char);  // Output: 셳

Java:

char c = '\uC173';
System.out.println(c);  // Output: 셳

JSON:

{"text": "\uC173"}  // Value: 셳

Python:

char = '\uC173'
print(char)  # Output: 셳

Perl:

my $char = "\x{C173}";
print $char;  # Output: 셳

PHP:

$char = "\x{C173}";
echo $char;  // Output: 셳

Ruby:

char = "\u{C173}"
puts char  # Output: 셳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49523;</p>  <!-- Display: 셳 -->

HTML Hexadecimal:

<p>HTML hex: &#xC173;</p>  <!-- Display: 셳 -->

URL Encoding:

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

Encodings

MD5:

66b1c7c07e3a1aac30509d3ff45561f9

SHA1:

43fd0c30ae542b1f2355d5845d806b7b0578f125

Base64:

7IWz