Unicode Finder

"쌨" U+C328(HANGUL SYLLABLE SSAESS)

U+C328
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSAESS

Programming

C
\uC328
JavaScript
\uC328
Java
\uC328
Json
\uC328
Python
\uC328
Perl
\x{C328}
PHP
\x{C328}
Ruby
\u{C328}
Rust
\u{C328}
Go
\uC328

Web

CSS
\00C328
HtmlDecimal
쌨
HtmlHexadecimal
쌨
Url
%EC%8C%A8

Code

MD5
88ffcfe72087fd9c8b6f17ea4cdd63ce
Sha1
d5bc7cb378e19960b569031b976fa9924e5e2a82
Base64
7Iyo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC328';
console.log(char);  // Output: 쌨

Java:

char c = '\uC328';
System.out.println(c);  // Output: 쌨

JSON:

{"text": "\uC328"}  // Value: 쌨

Python:

char = '\uC328'
print(char)  # Output: 쌨

Perl:

my $char = "\x{C328}";
print $char;  # Output: 쌨

PHP:

$char = "\x{C328}";
echo $char;  // Output: 쌨

Ruby:

char = "\u{C328}"
puts char  # Output: 쌨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49960;</p>  <!-- Display: 쌨 -->

HTML Hexadecimal:

<p>HTML hex: &#xC328;</p>  <!-- Display: 쌨 -->

URL Encoding:

// 쌨 URL encoding
https://unicodefinder.com/search.php?query=%EC%8C%A8

Encodings

MD5:

88ffcfe72087fd9c8b6f17ea4cdd63ce

SHA1:

d5bc7cb378e19960b569031b976fa9924e5e2a82

Base64:

7Iyo