Unicode Finder

"샰" U+C0F0(HANGUL SYLLABLE SYALS)

U+C0F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYALS

Programming

C
\uC0F0
JavaScript
\uC0F0
Java
\uC0F0
Json
\uC0F0
Python
\uC0F0
Perl
\x{C0F0}
PHP
\x{C0F0}
Ruby
\u{C0F0}
Rust
\u{C0F0}
Go
\uC0F0

Web

CSS
\00C0F0
HtmlDecimal
샰
HtmlHexadecimal
샰
Url
%EC%83%B0

Code

MD5
1bd668cb2086186044c7dab4d7b19232
Sha1
e6dfe1beda51f2d05cf1048fea7222ada6e4e428
Base64
7IOw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC0F0';
console.log(char);  // Output: 샰

Java:

char c = '\uC0F0';
System.out.println(c);  // Output: 샰

JSON:

{"text": "\uC0F0"}  // Value: 샰

Python:

char = '\uC0F0'
print(char)  # Output: 샰

Perl:

my $char = "\x{C0F0}";
print $char;  # Output: 샰

PHP:

$char = "\x{C0F0}";
echo $char;  // Output: 샰

Ruby:

char = "\u{C0F0}"
puts char  # Output: 샰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49392;</p>  <!-- Display: 샰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0F0;</p>  <!-- Display: 샰 -->

URL Encoding:

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

Encodings

MD5:

1bd668cb2086186044c7dab4d7b19232

SHA1:

e6dfe1beda51f2d05cf1048fea7222ada6e4e428

Base64:

7IOw