Unicode Finder

"샿" U+C0FF(HANGUL SYLLABLE SYAH)

U+C0FF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE SYAH

Programming

C
\uC0FF
JavaScript
\uC0FF
Java
\uC0FF
Json
\uC0FF
Python
\uC0FF
Perl
\x{C0FF}
PHP
\x{C0FF}
Ruby
\u{C0FF}
Rust
\u{C0FF}
Go
\uC0FF

Web

CSS
\00C0FF
HtmlDecimal
샿
HtmlHexadecimal
샿
Url
%EC%83%BF

Code

MD5
58b4ae7be73d6ae1b04a85ee1d9e47aa
Sha1
b3fc1dfa00956bb05479119fe330562f2885499e
Base64
7IO/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC0FF';
console.log(char);  // Output: 샿

Java:

char c = '\uC0FF';
System.out.println(c);  // Output: 샿

JSON:

{"text": "\uC0FF"}  // Value: 샿

Python:

char = '\uC0FF'
print(char)  # Output: 샿

Perl:

my $char = "\x{C0FF}";
print $char;  # Output: 샿

PHP:

$char = "\x{C0FF}";
echo $char;  // Output: 샿

Ruby:

char = "\u{C0FF}"
puts char  # Output: 샿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49407;</p>  <!-- Display: 샿 -->

HTML Hexadecimal:

<p>HTML hex: &#xC0FF;</p>  <!-- Display: 샿 -->

URL Encoding:

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

Encodings

MD5:

58b4ae7be73d6ae1b04a85ee1d9e47aa

SHA1:

b3fc1dfa00956bb05479119fe330562f2885499e

Base64:

7IO/