Unicode Finder

"쎭" U+C3AD(HANGUL SYLLABLE SSYEOLT)

U+C3AD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSYEOLT

Programming

C
\uC3AD
JavaScript
\uC3AD
Java
\uC3AD
Json
\uC3AD
Python
\uC3AD
Perl
\x{C3AD}
PHP
\x{C3AD}
Ruby
\u{C3AD}
Rust
\u{C3AD}
Go
\uC3AD

Web

CSS
\00C3AD
HtmlDecimal
쎭
HtmlHexadecimal
쎭
Url
%EC%8E%AD

Code

MD5
d1296580679808692f28c713c2c94149
Sha1
be6faf32e7ca4d0a28a48e0e16f5467c39a0a6ed
Base64
7I6t

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC3AD';
console.log(char);  // Output: 쎭

Java:

char c = '\uC3AD';
System.out.println(c);  // Output: 쎭

JSON:

{"text": "\uC3AD"}  // Value: 쎭

Python:

char = '\uC3AD'
print(char)  # Output: 쎭

Perl:

my $char = "\x{C3AD}";
print $char;  # Output: 쎭

PHP:

$char = "\x{C3AD}";
echo $char;  // Output: 쎭

Ruby:

char = "\u{C3AD}"
puts char  # Output: 쎭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50093;</p>  <!-- Display: 쎭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC3AD;</p>  <!-- Display: 쎭 -->

URL Encoding:

// 쎭 URL encoding
https://unicodefinder.com/search.php?query=%EC%8E%AD

Encodings

MD5:

d1296580679808692f28c713c2c94149

SHA1:

be6faf32e7ca4d0a28a48e0e16f5467c39a0a6ed

Base64:

7I6t