Unicode Finder

"쌤" U+C324(HANGUL SYLLABLE SSAEM)

U+C324
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSAEM

Programming

C
\uC324
JavaScript
\uC324
Java
\uC324
Json
\uC324
Python
\uC324
Perl
\x{C324}
PHP
\x{C324}
Ruby
\u{C324}
Rust
\u{C324}
Go
\uC324

Web

CSS
\00C324
HtmlDecimal
쌤
HtmlHexadecimal
쌤
Url
%EC%8C%A4

Code

MD5
abea58da7d24efee956472180c99192e
Sha1
1c705f329c2b29bf3d2cf65be12c259996254df8
Base64
7Iyk

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC324';
console.log(char);  // Output: 쌤

Java:

char c = '\uC324';
System.out.println(c);  // Output: 쌤

JSON:

{"text": "\uC324"}  // Value: 쌤

Python:

char = '\uC324'
print(char)  # Output: 쌤

Perl:

my $char = "\x{C324}";
print $char;  # Output: 쌤

PHP:

$char = "\x{C324}";
echo $char;  // Output: 쌤

Ruby:

char = "\u{C324}"
puts char  # Output: 쌤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49956;</p>  <!-- Display: 쌤 -->

HTML Hexadecimal:

<p>HTML hex: &#xC324;</p>  <!-- Display: 쌤 -->

URL Encoding:

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

Encodings

MD5:

abea58da7d24efee956472180c99192e

SHA1:

1c705f329c2b29bf3d2cf65be12c259996254df8

Base64:

7Iyk