Unicode Finder

"숀" U+C200(HANGUL SYLLABLE SYON)

U+C200
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYON

Programming

C
\uC200
JavaScript
\uC200
Java
\uC200
Json
\uC200
Python
\uC200
Perl
\x{C200}
PHP
\x{C200}
Ruby
\u{C200}
Rust
\u{C200}
Go
\uC200

Web

CSS
\00C200
HtmlDecimal
숀
HtmlHexadecimal
숀
Url
%EC%88%80

Code

MD5
9baf44a83162ddf82e7d9635d36d32d1
Sha1
507d31b53a9adeac9bc3afd999a9e1a690ef0643
Base64
7IiA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC200';
console.log(char);  // Output: 숀

Java:

char c = '\uC200';
System.out.println(c);  // Output: 숀

JSON:

{"text": "\uC200"}  // Value: 숀

Python:

char = '\uC200'
print(char)  # Output: 숀

Perl:

my $char = "\x{C200}";
print $char;  # Output: 숀

PHP:

$char = "\x{C200}";
echo $char;  // Output: 숀

Ruby:

char = "\u{C200}"
puts char  # Output: 숀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49664;</p>  <!-- Display: 숀 -->

HTML Hexadecimal:

<p>HTML hex: &#xC200;</p>  <!-- Display: 숀 -->

URL Encoding:

// 숀 URL encoding
https://unicodefinder.com/search.php?query=%EC%88%80

Encodings

MD5:

9baf44a83162ddf82e7d9635d36d32d1

SHA1:

507d31b53a9adeac9bc3afd999a9e1a690ef0643

Base64:

7IiA