Unicode Finder

"콄" U+CF44(HANGUL SYLLABLE KYELS)

U+CF44
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYELS

Programming

C
\uCF44
JavaScript
\uCF44
Java
\uCF44
Json
\uCF44
Python
\uCF44
Perl
\x{CF44}
PHP
\x{CF44}
Ruby
\u{CF44}
Rust
\u{CF44}
Go
\uCF44

Web

CSS
\00CF44
HtmlDecimal
콄
HtmlHexadecimal
콄
Url
%EC%BD%84

Code

MD5
3801d0ee625d2654eb313df81cfa4c91
Sha1
a09abc44943940ca32a9d62f7b3fafaa316b4ad6
Base64
7L2E

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF44';
console.log(char);  // Output: 콄

Java:

char c = '\uCF44';
System.out.println(c);  // Output: 콄

JSON:

{"text": "\uCF44"}  // Value: 콄

Python:

char = '\uCF44'
print(char)  # Output: 콄

Perl:

my $char = "\x{CF44}";
print $char;  # Output: 콄

PHP:

$char = "\x{CF44}";
echo $char;  // Output: 콄

Ruby:

char = "\u{CF44}"
puts char  # Output: 콄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53060;</p>  <!-- Display: 콄 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF44;</p>  <!-- Display: 콄 -->

URL Encoding:

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

Encodings

MD5:

3801d0ee625d2654eb313df81cfa4c91

SHA1:

a09abc44943940ca32a9d62f7b3fafaa316b4ad6

Base64:

7L2E