Unicode Finder

"싁" U+C2C1(HANGUL SYLLABLE SYIG)

U+C2C1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYIG

Programming

C
\uC2C1
JavaScript
\uC2C1
Java
\uC2C1
Json
\uC2C1
Python
\uC2C1
Perl
\x{C2C1}
PHP
\x{C2C1}
Ruby
\u{C2C1}
Rust
\u{C2C1}
Go
\uC2C1

Web

CSS
\00C2C1
HtmlDecimal
싁
HtmlHexadecimal
싁
Url
%EC%8B%81

Code

MD5
6d550cb8f2190711019cc7701bbbea24
Sha1
84509efb6a3bbeaefeb14d8fe5677d731cd170a3
Base64
7IuB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC2C1';
console.log(char);  // Output: 싁

Java:

char c = '\uC2C1';
System.out.println(c);  // Output: 싁

JSON:

{"text": "\uC2C1"}  // Value: 싁

Python:

char = '\uC2C1'
print(char)  # Output: 싁

Perl:

my $char = "\x{C2C1}";
print $char;  # Output: 싁

PHP:

$char = "\x{C2C1}";
echo $char;  // Output: 싁

Ruby:

char = "\u{C2C1}"
puts char  # Output: 싁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49857;</p>  <!-- Display: 싁 -->

HTML Hexadecimal:

<p>HTML hex: &#xC2C1;</p>  <!-- Display: 싁 -->

URL Encoding:

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

Encodings

MD5:

6d550cb8f2190711019cc7701bbbea24

SHA1:

84509efb6a3bbeaefeb14d8fe5677d731cd170a3

Base64:

7IuB