Unicode Finder

"쒭" U+C4AD(HANGUL SYLLABLE SSWEB)

U+C4AD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSWEB

Programming

C
\uC4AD
JavaScript
\uC4AD
Java
\uC4AD
Json
\uC4AD
Python
\uC4AD
Perl
\x{C4AD}
PHP
\x{C4AD}
Ruby
\u{C4AD}
Rust
\u{C4AD}
Go
\uC4AD

Web

CSS
\00C4AD
HtmlDecimal
쒭
HtmlHexadecimal
쒭
Url
%EC%92%AD

Code

MD5
d9ecd0f7794167145525cb1c07d48ae7
Sha1
c9938292aeddb4049d2ed79f5a55548bc5c95724
Base64
7JKt

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC4AD';
console.log(char);  // Output: 쒭

Java:

char c = '\uC4AD';
System.out.println(c);  // Output: 쒭

JSON:

{"text": "\uC4AD"}  // Value: 쒭

Python:

char = '\uC4AD'
print(char)  # Output: 쒭

Perl:

my $char = "\x{C4AD}";
print $char;  # Output: 쒭

PHP:

$char = "\x{C4AD}";
echo $char;  // Output: 쒭

Ruby:

char = "\u{C4AD}"
puts char  # Output: 쒭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50349;</p>  <!-- Display: 쒭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC4AD;</p>  <!-- Display: 쒭 -->

URL Encoding:

// 쒭 URL encoding
https://unicodefinder.com/search.php?query=%EC%92%AD

Encodings

MD5:

d9ecd0f7794167145525cb1c07d48ae7

SHA1:

c9938292aeddb4049d2ed79f5a55548bc5c95724

Base64:

7JKt