Unicode Finder

"쎇" U+C387(HANGUL SYLLABLE SSEGS)

U+C387
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEGS

Programming

C
\uC387
JavaScript
\uC387
Java
\uC387
Json
\uC387
Python
\uC387
Perl
\x{C387}
PHP
\x{C387}
Ruby
\u{C387}
Rust
\u{C387}
Go
\uC387

Web

CSS
\00C387
HtmlDecimal
쎇
HtmlHexadecimal
쎇
Url
%EC%8E%87

Code

MD5
30eb64b5e6b529e472e515ec3e6a0ee0
Sha1
3b299f6baab1f6f020444fe1c1318fb840638f44
Base64
7I6H

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC387';
console.log(char);  // Output: 쎇

Java:

char c = '\uC387';
System.out.println(c);  // Output: 쎇

JSON:

{"text": "\uC387"}  // Value: 쎇

Python:

char = '\uC387'
print(char)  # Output: 쎇

Perl:

my $char = "\x{C387}";
print $char;  # Output: 쎇

PHP:

$char = "\x{C387}";
echo $char;  // Output: 쎇

Ruby:

char = "\u{C387}"
puts char  # Output: 쎇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50055;</p>  <!-- Display: 쎇 -->

HTML Hexadecimal:

<p>HTML hex: &#xC387;</p>  <!-- Display: 쎇 -->

URL Encoding:

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

Encodings

MD5:

30eb64b5e6b529e472e515ec3e6a0ee0

SHA1:

3b299f6baab1f6f020444fe1c1318fb840638f44

Base64:

7I6H