Unicode Finder

"쐠" U+C420(HANGUL SYLLABLE SSWAEM)

U+C420
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAEM

Programming

C
\uC420
JavaScript
\uC420
Java
\uC420
Json
\uC420
Python
\uC420
Perl
\x{C420}
PHP
\x{C420}
Ruby
\u{C420}
Rust
\u{C420}
Go
\uC420

Web

CSS
\00C420
HtmlDecimal
쐠
HtmlHexadecimal
쐠
Url
%EC%90%A0

Code

MD5
cfa14e637f4f1ef1649d34ff21210684
Sha1
48a1a11ebdef019e9067d60831bc09cfe697c2b4
Base64
7JCg

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC420';
console.log(char);  // Output: 쐠

Java:

char c = '\uC420';
System.out.println(c);  // Output: 쐠

JSON:

{"text": "\uC420"}  // Value: 쐠

Python:

char = '\uC420'
print(char)  # Output: 쐠

Perl:

my $char = "\x{C420}";
print $char;  # Output: 쐠

PHP:

$char = "\x{C420}";
echo $char;  // Output: 쐠

Ruby:

char = "\u{C420}"
puts char  # Output: 쐠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50208;</p>  <!-- Display: 쐠 -->

HTML Hexadecimal:

<p>HTML hex: &#xC420;</p>  <!-- Display: 쐠 -->

URL Encoding:

// 쐠 URL encoding
https://unicodefinder.com/search.php?query=%EC%90%A0

Encodings

MD5:

cfa14e637f4f1ef1649d34ff21210684

SHA1:

48a1a11ebdef019e9067d60831bc09cfe697c2b4

Base64:

7JCg