Unicode Finder

"싱" U+C2F1(HANGUL SYLLABLE SING)

U+C2F1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SING

Programming

C
\uC2F1
JavaScript
\uC2F1
Java
\uC2F1
Json
\uC2F1
Python
\uC2F1
Perl
\x{C2F1}
PHP
\x{C2F1}
Ruby
\u{C2F1}
Rust
\u{C2F1}
Go
\uC2F1

Web

CSS
\00C2F1
HtmlDecimal
싱
HtmlHexadecimal
싱
Url
%EC%8B%B1

Code

MD5
4f44ca5ff7361908703b600bce1bae96
Sha1
b14384ae838bf8145d04b549f509b518404af491
Base64
7Iux

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2F1';
console.log(char);  // Output: 싱

Java:

char c = '\uC2F1';
System.out.println(c);  // Output: 싱

JSON:

{"text": "\uC2F1"}  // Value: 싱

Python:

char = '\uC2F1'
print(char)  # Output: 싱

Perl:

my $char = "\x{C2F1}";
print $char;  # Output: 싱

PHP:

$char = "\x{C2F1}";
echo $char;  // Output: 싱

Ruby:

char = "\u{C2F1}"
puts char  # Output: 싱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49905;</p>  <!-- Display: 싱 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2F1;</p>  <!-- Display: 싱 -->

URL Encoding:

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

Encodings

MD5:

4f44ca5ff7361908703b600bce1bae96

SHA1:

b14384ae838bf8145d04b549f509b518404af491

Base64:

7Iux