Unicode Finder

"쿬" U+CFEC(HANGUL SYLLABLE KULS)

U+CFEC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KULS

Programming

C
\uCFEC
JavaScript
\uCFEC
Java
\uCFEC
Json
\uCFEC
Python
\uCFEC
Perl
\x{CFEC}
PHP
\x{CFEC}
Ruby
\u{CFEC}
Rust
\u{CFEC}
Go
\uCFEC

Web

CSS
\00CFEC
HtmlDecimal
쿬
HtmlHexadecimal
쿬
Url
%EC%BF%AC

Code

MD5
3ef02538b3d9e08d4538238050bbde73
Sha1
7249e2aaeade7daef305ae493f981cdd6cee8200
Base64
7L+s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFEC';
console.log(char);  // Output: 쿬

Java:

char c = '\uCFEC';
System.out.println(c);  // Output: 쿬

JSON:

{"text": "\uCFEC"}  // Value: 쿬

Python:

char = '\uCFEC'
print(char)  # Output: 쿬

Perl:

my $char = "\x{CFEC}";
print $char;  # Output: 쿬

PHP:

$char = "\x{CFEC}";
echo $char;  // Output: 쿬

Ruby:

char = "\u{CFEC}"
puts char  # Output: 쿬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53228;</p>  <!-- Display: 쿬 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFEC;</p>  <!-- Display: 쿬 -->

URL Encoding:

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

Encodings

MD5:

3ef02538b3d9e08d4538238050bbde73

SHA1:

7249e2aaeade7daef305ae493f981cdd6cee8200

Base64:

7L+s