Unicode Finder

"쐟" U+C41F(HANGUL SYLLABLE SSWAELH)

U+C41F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWAELH

Programming

C
\uC41F
JavaScript
\uC41F
Java
\uC41F
Json
\uC41F
Python
\uC41F
Perl
\x{C41F}
PHP
\x{C41F}
Ruby
\u{C41F}
Rust
\u{C41F}
Go
\uC41F

Web

CSS
\00C41F
HtmlDecimal
쐟
HtmlHexadecimal
쐟
Url
%EC%90%9F

Code

MD5
65bde48dc1bcfbede0448669dcae3c32
Sha1
d48d5c72c052b73f91ebf67406eb4150b795187f
Base64
7JCf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC41F';
console.log(char);  // Output: 쐟

Java:

char c = '\uC41F';
System.out.println(c);  // Output: 쐟

JSON:

{"text": "\uC41F"}  // Value: 쐟

Python:

char = '\uC41F'
print(char)  # Output: 쐟

Perl:

my $char = "\x{C41F}";
print $char;  # Output: 쐟

PHP:

$char = "\x{C41F}";
echo $char;  // Output: 쐟

Ruby:

char = "\u{C41F}"
puts char  # Output: 쐟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50207;</p>  <!-- Display: 쐟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC41F;</p>  <!-- Display: 쐟 -->

URL Encoding:

// 쐟 URL encoding
https://unicodefinder.com/search.php?query=%EC%90%9F

Encodings

MD5:

65bde48dc1bcfbede0448669dcae3c32

SHA1:

d48d5c72c052b73f91ebf67406eb4150b795187f

Base64:

7JCf