Unicode Finder

"쎕" U+C395(HANGUL SYLLABLE SSEB)

U+C395
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SSEB

Programming

C
\uC395
JavaScript
\uC395
Java
\uC395
Json
\uC395
Python
\uC395
Perl
\x{C395}
PHP
\x{C395}
Ruby
\u{C395}
Rust
\u{C395}
Go
\uC395

Web

CSS
\00C395
HtmlDecimal
쎕
HtmlHexadecimal
쎕
Url
%EC%8E%95

Code

MD5
a0b1879c103805e397460a41b9d92fe7
Sha1
0c67d587323477fe35c25a8400283e7ed7f03651
Base64
7I6V

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC395';
console.log(char);  // Output: 쎕

Java:

char c = '\uC395';
System.out.println(c);  // Output: 쎕

JSON:

{"text": "\uC395"}  // Value: 쎕

Python:

char = '\uC395'
print(char)  # Output: 쎕

Perl:

my $char = "\x{C395}";
print $char;  # Output: 쎕

PHP:

$char = "\x{C395}";
echo $char;  // Output: 쎕

Ruby:

char = "\u{C395}"
puts char  # Output: 쎕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50069;</p>  <!-- Display: 쎕 -->

HTML Hexadecimal:

<p>HTML hex: &#xC395;</p>  <!-- Display: 쎕 -->

URL Encoding:

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

Encodings

MD5:

a0b1879c103805e397460a41b9d92fe7

SHA1:

0c67d587323477fe35c25a8400283e7ed7f03651

Base64:

7I6V