Unicode Finder

"콑" U+CF51(HANGUL SYLLABLE KYET)

U+CF51
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYET

Programming

C
\uCF51
JavaScript
\uCF51
Java
\uCF51
Json
\uCF51
Python
\uCF51
Perl
\x{CF51}
PHP
\x{CF51}
Ruby
\u{CF51}
Rust
\u{CF51}
Go
\uCF51

Web

CSS
\00CF51
HtmlDecimal
콑
HtmlHexadecimal
콑
Url
%EC%BD%91

Code

MD5
5a1d57b2aa79f1d3de0c5adb22f79f12
Sha1
2c10257f03f69035ef865809b7ea014f5c0c5a51
Base64
7L2R

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF51';
console.log(char);  // Output: 콑

Java:

char c = '\uCF51';
System.out.println(c);  // Output: 콑

JSON:

{"text": "\uCF51"}  // Value: 콑

Python:

char = '\uCF51'
print(char)  # Output: 콑

Perl:

my $char = "\x{CF51}";
print $char;  # Output: 콑

PHP:

$char = "\x{CF51}";
echo $char;  // Output: 콑

Ruby:

char = "\u{CF51}"
puts char  # Output: 콑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53073;</p>  <!-- Display: 콑 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF51;</p>  <!-- Display: 콑 -->

URL Encoding:

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

Encodings

MD5:

5a1d57b2aa79f1d3de0c5adb22f79f12

SHA1:

2c10257f03f69035ef865809b7ea014f5c0c5a51

Base64:

7L2R