Unicode Finder

"챰" U+CC70(HANGUL SYLLABLE CYAM)

U+CC70
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE CYAM

Programming

C
\uCC70
JavaScript
\uCC70
Java
\uCC70
Json
\uCC70
Python
\uCC70
Perl
\x{CC70}
PHP
\x{CC70}
Ruby
\u{CC70}
Rust
\u{CC70}
Go
\uCC70

Web

CSS
\00CC70
HtmlDecimal
챰
HtmlHexadecimal
챰
Url
%EC%B1%B0

Code

MD5
f387e449df2d09f337d9a028407ae7ae
Sha1
f0393995aebcf3da307de92f6ac2cf7cdff8606f
Base64
7LGw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCC70';
console.log(char);  // Output: 챰

Java:

char c = '\uCC70';
System.out.println(c);  // Output: 챰

JSON:

{"text": "\uCC70"}  // Value: 챰

Python:

char = '\uCC70'
print(char)  # Output: 챰

Perl:

my $char = "\x{CC70}";
print $char;  # Output: 챰

PHP:

$char = "\x{CC70}";
echo $char;  // Output: 챰

Ruby:

char = "\u{CC70}"
puts char  # Output: 챰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52336;</p>  <!-- Display: 챰 -->

HTML Hexadecimal:

<p>HTML hex: &#xCC70;</p>  <!-- Display: 챰 -->

URL Encoding:

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

Encodings

MD5:

f387e449df2d09f337d9a028407ae7ae

SHA1:

f0393995aebcf3da307de92f6ac2cf7cdff8606f

Base64:

7LGw