Unicode Finder

"슱" U+C2B1(HANGUL SYLLABLE SEULT)

U+C2B1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SEULT

Programming

C
\uC2B1
JavaScript
\uC2B1
Java
\uC2B1
Json
\uC2B1
Python
\uC2B1
Perl
\x{C2B1}
PHP
\x{C2B1}
Ruby
\u{C2B1}
Rust
\u{C2B1}
Go
\uC2B1

Web

CSS
\00C2B1
HtmlDecimal
슱
HtmlHexadecimal
슱
Url
%EC%8A%B1

Code

MD5
ca9bfcdbf858ac46c3653c30c02c9c9e
Sha1
655513be7d5ee8cfb1970fc631ec006c48d94509
Base64
7Iqx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2B1';
console.log(char);  // Output: 슱

Java:

char c = '\uC2B1';
System.out.println(c);  // Output: 슱

JSON:

{"text": "\uC2B1"}  // Value: 슱

Python:

char = '\uC2B1'
print(char)  # Output: 슱

Perl:

my $char = "\x{C2B1}";
print $char;  # Output: 슱

PHP:

$char = "\x{C2B1}";
echo $char;  // Output: 슱

Ruby:

char = "\u{C2B1}"
puts char  # Output: 슱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49841;</p>  <!-- Display: 슱 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2B1;</p>  <!-- Display: 슱 -->

URL Encoding:

// 슱 URL encoding
https://unicodefinder.com/search.php?query=%EC%8A%B1

Encodings

MD5:

ca9bfcdbf858ac46c3653c30c02c9c9e

SHA1:

655513be7d5ee8cfb1970fc631ec006c48d94509

Base64:

7Iqx