Unicode Finder

"쌯" U+C32F(HANGUL SYLLABLE SSAEH)

U+C32F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSAEH

Programming

C
\uC32F
JavaScript
\uC32F
Java
\uC32F
Json
\uC32F
Python
\uC32F
Perl
\x{C32F}
PHP
\x{C32F}
Ruby
\u{C32F}
Rust
\u{C32F}
Go
\uC32F

Web

CSS
\00C32F
HtmlDecimal
쌯
HtmlHexadecimal
쌯
Url
%EC%8C%AF

Code

MD5
9030227be71cb07c46f903a212e6dbae
Sha1
ea50529546ac18eb55e159b3bf83deb693e24e09
Base64
7Iyv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC32F';
console.log(char);  // Output: 쌯

Java:

char c = '\uC32F';
System.out.println(c);  // Output: 쌯

JSON:

{"text": "\uC32F"}  // Value: 쌯

Python:

char = '\uC32F'
print(char)  # Output: 쌯

Perl:

my $char = "\x{C32F}";
print $char;  # Output: 쌯

PHP:

$char = "\x{C32F}";
echo $char;  // Output: 쌯

Ruby:

char = "\u{C32F}"
puts char  # Output: 쌯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49967;</p>  <!-- Display: 쌯 -->

HTML Hexadecimal:

<p>HTML hex: &#xC32F;</p>  <!-- Display: 쌯 -->

URL Encoding:

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

Encodings

MD5:

9030227be71cb07c46f903a212e6dbae

SHA1:

ea50529546ac18eb55e159b3bf83deb693e24e09

Base64:

7Iyv