Unicode Finder

"샱" U+C0F1(HANGUL SYLLABLE SYALT)

U+C0F1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYALT

Programming

C
\uC0F1
JavaScript
\uC0F1
Java
\uC0F1
Json
\uC0F1
Python
\uC0F1
Perl
\x{C0F1}
PHP
\x{C0F1}
Ruby
\u{C0F1}
Rust
\u{C0F1}
Go
\uC0F1

Web

CSS
\00C0F1
HtmlDecimal
샱
HtmlHexadecimal
샱
Url
%EC%83%B1

Code

MD5
0db29cd99f7afbf1daac202e530e0732
Sha1
a1bc7981d405ea581b38befc02de1f05be65a1f3
Base64
7IOx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC0F1';
console.log(char);  // Output: 샱

Java:

char c = '\uC0F1';
System.out.println(c);  // Output: 샱

JSON:

{"text": "\uC0F1"}  // Value: 샱

Python:

char = '\uC0F1'
print(char)  # Output: 샱

Perl:

my $char = "\x{C0F1}";
print $char;  # Output: 샱

PHP:

$char = "\x{C0F1}";
echo $char;  // Output: 샱

Ruby:

char = "\u{C0F1}"
puts char  # Output: 샱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49393;</p>  <!-- Display: 샱 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0F1;</p>  <!-- Display: 샱 -->

URL Encoding:

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

Encodings

MD5:

0db29cd99f7afbf1daac202e530e0732

SHA1:

a1bc7981d405ea581b38befc02de1f05be65a1f3

Base64:

7IOx