Unicode Finder

"샦" U+C0E6(HANGUL SYLLABLE SYAGG)

U+C0E6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAGG

Programming

C
\uC0E6
JavaScript
\uC0E6
Java
\uC0E6
Json
\uC0E6
Python
\uC0E6
Perl
\x{C0E6}
PHP
\x{C0E6}
Ruby
\u{C0E6}
Rust
\u{C0E6}
Go
\uC0E6

Web

CSS
\00C0E6
HtmlDecimal
샦
HtmlHexadecimal
샦
Url
%EC%83%A6

Code

MD5
cad6e02dfa5d093ef30b8a0f7e073a99
Sha1
848d8f98a0442415ec91b517044b02ed4260af37
Base64
7IOm

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC0E6';
console.log(char);  // Output: 샦

Java:

char c = '\uC0E6';
System.out.println(c);  // Output: 샦

JSON:

{"text": "\uC0E6"}  // Value: 샦

Python:

char = '\uC0E6'
print(char)  # Output: 샦

Perl:

my $char = "\x{C0E6}";
print $char;  # Output: 샦

PHP:

$char = "\x{C0E6}";
echo $char;  // Output: 샦

Ruby:

char = "\u{C0E6}"
puts char  # Output: 샦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49382;</p>  <!-- Display: 샦 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0E6;</p>  <!-- Display: 샦 -->

URL Encoding:

// 샦 URL encoding
https://unicodefinder.com/search.php?query=%EC%83%A6

Encodings

MD5:

cad6e02dfa5d093ef30b8a0f7e073a99

SHA1:

848d8f98a0442415ec91b517044b02ed4260af37

Base64:

7IOm