Unicode Finder

"쌧" U+C327(HANGUL SYLLABLE SSAES)

U+C327
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSAES

Programming

C
\uC327
JavaScript
\uC327
Java
\uC327
Json
\uC327
Python
\uC327
Perl
\x{C327}
PHP
\x{C327}
Ruby
\u{C327}
Rust
\u{C327}
Go
\uC327

Web

CSS
\00C327
HtmlDecimal
쌧
HtmlHexadecimal
쌧
Url
%EC%8C%A7

Code

MD5
232a5fb9e0120e8459e2561133f19f27
Sha1
f64e3408bbb9879e007848cd52fa067ee13d7bf2
Base64
7Iyn

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC327';
console.log(char);  // Output: 쌧

Java:

char c = '\uC327';
System.out.println(c);  // Output: 쌧

JSON:

{"text": "\uC327"}  // Value: 쌧

Python:

char = '\uC327'
print(char)  # Output: 쌧

Perl:

my $char = "\x{C327}";
print $char;  # Output: 쌧

PHP:

$char = "\x{C327}";
echo $char;  // Output: 쌧

Ruby:

char = "\u{C327}"
puts char  # Output: 쌧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49959;</p>  <!-- Display: 쌧 -->

HTML Hexadecimal:

<p>HTML hex: &#xC327;</p>  <!-- Display: 쌧 -->

URL Encoding:

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

Encodings

MD5:

232a5fb9e0120e8459e2561133f19f27

SHA1:

f64e3408bbb9879e007848cd52fa067ee13d7bf2

Base64:

7Iyn