Unicode Finder

"첕" U+CC95(HANGUL SYLLABLE CYAET)

U+CC95
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CYAET

Programming

C
\uCC95
JavaScript
\uCC95
Java
\uCC95
Json
\uCC95
Python
\uCC95
Perl
\x{CC95}
PHP
\x{CC95}
Ruby
\u{CC95}
Rust
\u{CC95}
Go
\uCC95

Web

CSS
\00CC95
HtmlDecimal
첕
HtmlHexadecimal
첕
Url
%EC%B2%95

Code

MD5
5c7287fe4e1f977f34f14f68526e74e6
Sha1
e8f4439551c7870baf1ecaabe07c2431e93edfb7
Base64
7LKV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCC95';
console.log(char);  // Output: 첕

Java:

char c = '\uCC95';
System.out.println(c);  // Output: 첕

JSON:

{"text": "\uCC95"}  // Value: 첕

Python:

char = '\uCC95'
print(char)  # Output: 첕

Perl:

my $char = "\x{CC95}";
print $char;  # Output: 첕

PHP:

$char = "\x{CC95}";
echo $char;  // Output: 첕

Ruby:

char = "\u{CC95}"
puts char  # Output: 첕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52373;</p>  <!-- Display: 첕 -->

HTML Hexadecimal:

<p>HTML hex: &#xCC95;</p>  <!-- Display: 첕 -->

URL Encoding:

// 첕 URL encoding
https://unicodefinder.com/search.php?query=%EC%B2%95

Encodings

MD5:

5c7287fe4e1f977f34f14f68526e74e6

SHA1:

e8f4439551c7870baf1ecaabe07c2431e93edfb7

Base64:

7LKV