Unicode Finder

"쓂" U+C4C2(HANGUL SYLLABLE SSWILM)

U+C4C2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWILM

Programming

C
\uC4C2
JavaScript
\uC4C2
Java
\uC4C2
Json
\uC4C2
Python
\uC4C2
Perl
\x{C4C2}
PHP
\x{C4C2}
Ruby
\u{C4C2}
Rust
\u{C4C2}
Go
\uC4C2

Web

CSS
\00C4C2
HtmlDecimal
쓂
HtmlHexadecimal
쓂
Url
%EC%93%82

Code

MD5
e28f722346c0c7bff38aaf58d8ad0bd4
Sha1
f687d672ae441548a7d8d5d72b4af77b46f7db9d
Base64
7JOC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC4C2';
console.log(char);  // Output: 쓂

Java:

char c = '\uC4C2';
System.out.println(c);  // Output: 쓂

JSON:

{"text": "\uC4C2"}  // Value: 쓂

Python:

char = '\uC4C2'
print(char)  # Output: 쓂

Perl:

my $char = "\x{C4C2}";
print $char;  # Output: 쓂

PHP:

$char = "\x{C4C2}";
echo $char;  // Output: 쓂

Ruby:

char = "\u{C4C2}"
puts char  # Output: 쓂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50370;</p>  <!-- Display: 쓂 -->

HTML Hexadecimal:

<p>HTML hex: &#xC4C2;</p>  <!-- Display: 쓂 -->

URL Encoding:

// 쓂 URL encoding
https://unicodefinder.com/search.php?query=%EC%93%82

Encodings

MD5:

e28f722346c0c7bff38aaf58d8ad0bd4

SHA1:

f687d672ae441548a7d8d5d72b4af77b46f7db9d

Base64:

7JOC