Unicode Finder

"쒄" U+C484(HANGUL SYLLABLE SSWEON)

U+C484
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWEON

Programming

C
\uC484
JavaScript
\uC484
Java
\uC484
Json
\uC484
Python
\uC484
Perl
\x{C484}
PHP
\x{C484}
Ruby
\u{C484}
Rust
\u{C484}
Go
\uC484

Web

CSS
\00C484
HtmlDecimal
쒄
HtmlHexadecimal
쒄
Url
%EC%92%84

Code

MD5
2c7eac0fcbefb9e1f89d23d026da5875
Sha1
73162f25a46bde60fe3ceff5cd6ce468542c5df6
Base64
7JKE

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC484';
console.log(char);  // Output: 쒄

Java:

char c = '\uC484';
System.out.println(c);  // Output: 쒄

JSON:

{"text": "\uC484"}  // Value: 쒄

Python:

char = '\uC484'
print(char)  # Output: 쒄

Perl:

my $char = "\x{C484}";
print $char;  # Output: 쒄

PHP:

$char = "\x{C484}";
echo $char;  // Output: 쒄

Ruby:

char = "\u{C484}"
puts char  # Output: 쒄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50308;</p>  <!-- Display: 쒄 -->

HTML Hexadecimal:

<p>HTML hex: &#xC484;</p>  <!-- Display: 쒄 -->

URL Encoding:

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

Encodings

MD5:

2c7eac0fcbefb9e1f89d23d026da5875

SHA1:

73162f25a46bde60fe3ceff5cd6ce468542c5df6

Base64:

7JKE