Unicode Finder

"쇲" U+C1F2(HANGUL SYLLABLE SOEBS)

U+C1F2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SOEBS

Programming

C
\uC1F2
JavaScript
\uC1F2
Java
\uC1F2
Json
\uC1F2
Python
\uC1F2
Perl
\x{C1F2}
PHP
\x{C1F2}
Ruby
\u{C1F2}
Rust
\u{C1F2}
Go
\uC1F2

Web

CSS
\00C1F2
HtmlDecimal
쇲
HtmlHexadecimal
쇲
Url
%EC%87%B2

Code

MD5
ab42c96fe97e12a122e8a28563b32e99
Sha1
fde53af0a789dbaa388e32f7f52bf61208ccb0d3
Base64
7Iey

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC1F2';
console.log(char);  // Output: 쇲

Java:

char c = '\uC1F2';
System.out.println(c);  // Output: 쇲

JSON:

{"text": "\uC1F2"}  // Value: 쇲

Python:

char = '\uC1F2'
print(char)  # Output: 쇲

Perl:

my $char = "\x{C1F2}";
print $char;  # Output: 쇲

PHP:

$char = "\x{C1F2}";
echo $char;  // Output: 쇲

Ruby:

char = "\u{C1F2}"
puts char  # Output: 쇲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49650;</p>  <!-- Display: 쇲 -->

HTML Hexadecimal:

<p>HTML hex: &#xC1F2;</p>  <!-- Display: 쇲 -->

URL Encoding:

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

Encodings

MD5:

ab42c96fe97e12a122e8a28563b32e99

SHA1:

fde53af0a789dbaa388e32f7f52bf61208ccb0d3

Base64:

7Iey