Unicode Finder

"쇼" U+C1FC(HANGUL SYLLABLE SYO)

U+C1FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYO

Programming

C
\uC1FC
JavaScript
\uC1FC
Java
\uC1FC
Json
\uC1FC
Python
\uC1FC
Perl
\x{C1FC}
PHP
\x{C1FC}
Ruby
\u{C1FC}
Rust
\u{C1FC}
Go
\uC1FC

Web

CSS
\00C1FC
HtmlDecimal
쇼
HtmlHexadecimal
쇼
Url
%EC%87%BC

Code

MD5
4889e0b8792626cc957d1d673a815dcd
Sha1
c3003b2cf2e25a21b808ee7717814321eebacc5f
Base64
7Ie8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1FC';
console.log(char);  // Output: 쇼

Java:

char c = '\uC1FC';
System.out.println(c);  // Output: 쇼

JSON:

{"text": "\uC1FC"}  // Value: 쇼

Python:

char = '\uC1FC'
print(char)  # Output: 쇼

Perl:

my $char = "\x{C1FC}";
print $char;  # Output: 쇼

PHP:

$char = "\x{C1FC}";
echo $char;  // Output: 쇼

Ruby:

char = "\u{C1FC}"
puts char  # Output: 쇼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49660;</p>  <!-- Display: 쇼 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1FC;</p>  <!-- Display: 쇼 -->

URL Encoding:

// 쇼 URL encoding
https://unicodefinder.com/search.php?query=%EC%87%BC

Encodings

MD5:

4889e0b8792626cc957d1d673a815dcd

SHA1:

c3003b2cf2e25a21b808ee7717814321eebacc5f

Base64:

7Ie8