Unicode Finder

"쿺" U+CFFA(HANGUL SYLLABLE KUP)

U+CFFA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KUP

Programming

C
\uCFFA
JavaScript
\uCFFA
Java
\uCFFA
Json
\uCFFA
Python
\uCFFA
Perl
\x{CFFA}
PHP
\x{CFFA}
Ruby
\u{CFFA}
Rust
\u{CFFA}
Go
\uCFFA

Web

CSS
\00CFFA
HtmlDecimal
쿺
HtmlHexadecimal
쿺
Url
%EC%BF%BA

Code

MD5
9266e29eca8e6133360fdd45f8b2481f
Sha1
0ff2c06cc27afaf88804a3f9e12dd7957be6f997
Base64
7L+6

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFFA';
console.log(char);  // Output: 쿺

Java:

char c = '\uCFFA';
System.out.println(c);  // Output: 쿺

JSON:

{"text": "\uCFFA"}  // Value: 쿺

Python:

char = '\uCFFA'
print(char)  # Output: 쿺

Perl:

my $char = "\x{CFFA}";
print $char;  # Output: 쿺

PHP:

$char = "\x{CFFA}";
echo $char;  // Output: 쿺

Ruby:

char = "\u{CFFA}"
puts char  # Output: 쿺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53242;</p>  <!-- Display: 쿺 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFFA;</p>  <!-- Display: 쿺 -->

URL Encoding:

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

Encodings

MD5:

9266e29eca8e6133360fdd45f8b2481f

SHA1:

0ff2c06cc27afaf88804a3f9e12dd7957be6f997

Base64:

7L+6