Unicode Finder

"쾉" U+CF89(HANGUL SYLLABLE KWAT)

U+CF89
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWAT

Programming

C
\uCF89
JavaScript
\uCF89
Java
\uCF89
Json
\uCF89
Python
\uCF89
Perl
\x{CF89}
PHP
\x{CF89}
Ruby
\u{CF89}
Rust
\u{CF89}
Go
\uCF89

Web

CSS
\00CF89
HtmlDecimal
쾉
HtmlHexadecimal
쾉
Url
%EC%BE%89

Code

MD5
eb7e2ee6e9c592674e357ef0a1a32a87
Sha1
7c01239d0f5340ef75a62dc0449f6bacf5aaf064
Base64
7L6J

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF89';
console.log(char);  // Output: 쾉

Java:

char c = '\uCF89';
System.out.println(c);  // Output: 쾉

JSON:

{"text": "\uCF89"}  // Value: 쾉

Python:

char = '\uCF89'
print(char)  # Output: 쾉

Perl:

my $char = "\x{CF89}";
print $char;  # Output: 쾉

PHP:

$char = "\x{CF89}";
echo $char;  // Output: 쾉

Ruby:

char = "\u{CF89}"
puts char  # Output: 쾉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53129;</p>  <!-- Display: 쾉 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF89;</p>  <!-- Display: 쾉 -->

URL Encoding:

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

Encodings

MD5:

eb7e2ee6e9c592674e357ef0a1a32a87

SHA1:

7c01239d0f5340ef75a62dc0449f6bacf5aaf064

Base64:

7L6J