Unicode Finder

"쇾" U+C1FE(HANGUL SYLLABLE SYOGG)

U+C1FE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYOGG

Programming

C
\uC1FE
JavaScript
\uC1FE
Java
\uC1FE
Json
\uC1FE
Python
\uC1FE
Perl
\x{C1FE}
PHP
\x{C1FE}
Ruby
\u{C1FE}
Rust
\u{C1FE}
Go
\uC1FE

Web

CSS
\00C1FE
HtmlDecimal
쇾
HtmlHexadecimal
쇾
Url
%EC%87%BE

Code

MD5
0cae8dff65ab3827d867a97015c3b6e8
Sha1
f15ef8d1a3f37e23209dd878d11522db7b1b2137
Base64
7Ie+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1FE';
console.log(char);  // Output: 쇾

Java:

char c = '\uC1FE';
System.out.println(c);  // Output: 쇾

JSON:

{"text": "\uC1FE"}  // Value: 쇾

Python:

char = '\uC1FE'
print(char)  # Output: 쇾

Perl:

my $char = "\x{C1FE}";
print $char;  # Output: 쇾

PHP:

$char = "\x{C1FE}";
echo $char;  // Output: 쇾

Ruby:

char = "\u{C1FE}"
puts char  # Output: 쇾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49662;</p>  <!-- Display: 쇾 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1FE;</p>  <!-- Display: 쇾 -->

URL Encoding:

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

Encodings

MD5:

0cae8dff65ab3827d867a97015c3b6e8

SHA1:

f15ef8d1a3f37e23209dd878d11522db7b1b2137

Base64:

7Ie+