Unicode Finder

"쾄" U+CF84(HANGUL SYLLABLE KWASS)

U+CF84
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWASS

Programming

C
\uCF84
JavaScript
\uCF84
Java
\uCF84
Json
\uCF84
Python
\uCF84
Perl
\x{CF84}
PHP
\x{CF84}
Ruby
\u{CF84}
Rust
\u{CF84}
Go
\uCF84

Web

CSS
\00CF84
HtmlDecimal
쾄
HtmlHexadecimal
쾄
Url
%EC%BE%84

Code

MD5
27afe5981a8add03eee96b57e9eb0702
Sha1
0e7c343f0703268aaf6cce83b2c7d9e3ea717ae1
Base64
7L6E

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF84';
console.log(char);  // Output: 쾄

Java:

char c = '\uCF84';
System.out.println(c);  // Output: 쾄

JSON:

{"text": "\uCF84"}  // Value: 쾄

Python:

char = '\uCF84'
print(char)  # Output: 쾄

Perl:

my $char = "\x{CF84}";
print $char;  # Output: 쾄

PHP:

$char = "\x{CF84}";
echo $char;  // Output: 쾄

Ruby:

char = "\u{CF84}"
puts char  # Output: 쾄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53124;</p>  <!-- Display: 쾄 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF84;</p>  <!-- Display: 쾄 -->

URL Encoding:

// 쾄 URL encoding
https://unicodefinder.com/search.php?query=%EC%BE%84

Encodings

MD5:

27afe5981a8add03eee96b57e9eb0702

SHA1:

0e7c343f0703268aaf6cce83b2c7d9e3ea717ae1

Base64:

7L6E