Unicode Finder

"셔" U+C154(HANGUL SYLLABLE SYEO)

U+C154
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYEO

Programming

C
\uC154
JavaScript
\uC154
Java
\uC154
Json
\uC154
Python
\uC154
Perl
\x{C154}
PHP
\x{C154}
Ruby
\u{C154}
Rust
\u{C154}
Go
\uC154

Web

CSS
\00C154
HtmlDecimal
셔
HtmlHexadecimal
셔
Url
%EC%85%94

Code

MD5
b53a6487ee8e36c8c6be4a148d97c2bd
Sha1
1f6c4873beef46f77df70d3f0e1385a62fbca390
Base64
7IWU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC154';
console.log(char);  // Output: 셔

Java:

char c = '\uC154';
System.out.println(c);  // Output: 셔

JSON:

{"text": "\uC154"}  // Value: 셔

Python:

char = '\uC154'
print(char)  # Output: 셔

Perl:

my $char = "\x{C154}";
print $char;  # Output: 셔

PHP:

$char = "\x{C154}";
echo $char;  // Output: 셔

Ruby:

char = "\u{C154}"
puts char  # Output: 셔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49492;</p>  <!-- Display: 셔 -->

HTML Hexadecimal:

<p>HTML hex: &#xC154;</p>  <!-- Display: 셔 -->

URL Encoding:

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

Encodings

MD5:

b53a6487ee8e36c8c6be4a148d97c2bd

SHA1:

1f6c4873beef46f77df70d3f0e1385a62fbca390

Base64:

7IWU