Unicode Finder

"콞" U+CF5E(HANGUL SYLLABLE KOLM)

U+CF5E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOLM

Programming

C
\uCF5E
JavaScript
\uCF5E
Java
\uCF5E
Json
\uCF5E
Python
\uCF5E
Perl
\x{CF5E}
PHP
\x{CF5E}
Ruby
\u{CF5E}
Rust
\u{CF5E}
Go
\uCF5E

Web

CSS
\00CF5E
HtmlDecimal
콞
HtmlHexadecimal
콞
Url
%EC%BD%9E

Code

MD5
cbab29582e67779b06d91d7c4ce4719e
Sha1
ca86343870cd0f1375fb4114f1eb19f73583d564
Base64
7L2e

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF5E';
console.log(char);  // Output: 콞

Java:

char c = '\uCF5E';
System.out.println(c);  // Output: 콞

JSON:

{"text": "\uCF5E"}  // Value: 콞

Python:

char = '\uCF5E'
print(char)  # Output: 콞

Perl:

my $char = "\x{CF5E}";
print $char;  # Output: 콞

PHP:

$char = "\x{CF5E}";
echo $char;  // Output: 콞

Ruby:

char = "\u{CF5E}"
puts char  # Output: 콞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53086;</p>  <!-- Display: 콞 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF5E;</p>  <!-- Display: 콞 -->

URL Encoding:

// 콞 URL encoding
https://unicodefinder.com/search.php?query=%EC%BD%9E

Encodings

MD5:

cbab29582e67779b06d91d7c4ce4719e

SHA1:

ca86343870cd0f1375fb4114f1eb19f73583d564

Base64:

7L2e