Unicode Finder

"쐄" U+C404(HANGUL SYLLABLE SSWAM)

U+C404
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAM

Programming

C
\uC404
JavaScript
\uC404
Java
\uC404
Json
\uC404
Python
\uC404
Perl
\x{C404}
PHP
\x{C404}
Ruby
\u{C404}
Rust
\u{C404}
Go
\uC404

Web

CSS
\00C404
HtmlDecimal
쐄
HtmlHexadecimal
쐄
Url
%EC%90%84

Code

MD5
60393479f2b21bf86756b9c028c68e88
Sha1
ec71ee8f756665f0e3ba8f8c3e4da9f1d635d24f
Base64
7JCE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC404';
console.log(char);  // Output: 쐄

Java:

char c = '\uC404';
System.out.println(c);  // Output: 쐄

JSON:

{"text": "\uC404"}  // Value: 쐄

Python:

char = '\uC404'
print(char)  # Output: 쐄

Perl:

my $char = "\x{C404}";
print $char;  # Output: 쐄

PHP:

$char = "\x{C404}";
echo $char;  // Output: 쐄

Ruby:

char = "\u{C404}"
puts char  # Output: 쐄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50180;</p>  <!-- Display: 쐄 -->

HTML Hexadecimal:

<p>HTML hex: &#xC404;</p>  <!-- Display: 쐄 -->

URL Encoding:

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

Encodings

MD5:

60393479f2b21bf86756b9c028c68e88

SHA1:

ec71ee8f756665f0e3ba8f8c3e4da9f1d635d24f

Base64:

7JCE