Unicode Finder

"콠" U+CF60(HANGUL SYLLABLE KOLS)

U+CF60
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOLS

Programming

C
\uCF60
JavaScript
\uCF60
Java
\uCF60
Json
\uCF60
Python
\uCF60
Perl
\x{CF60}
PHP
\x{CF60}
Ruby
\u{CF60}
Rust
\u{CF60}
Go
\uCF60

Web

CSS
\00CF60
HtmlDecimal
콠
HtmlHexadecimal
콠
Url
%EC%BD%A0

Code

MD5
29fb486ee85edeec75c8a79d263f302c
Sha1
e2e33bfaec9493332e79f4635733f46403ac3b35
Base64
7L2g

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF60';
console.log(char);  // Output: 콠

Java:

char c = '\uCF60';
System.out.println(c);  // Output: 콠

JSON:

{"text": "\uCF60"}  // Value: 콠

Python:

char = '\uCF60'
print(char)  # Output: 콠

Perl:

my $char = "\x{CF60}";
print $char;  # Output: 콠

PHP:

$char = "\x{CF60}";
echo $char;  // Output: 콠

Ruby:

char = "\u{CF60}"
puts char  # Output: 콠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53088;</p>  <!-- Display: 콠 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF60;</p>  <!-- Display: 콠 -->

URL Encoding:

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

Encodings

MD5:

29fb486ee85edeec75c8a79d263f302c

SHA1:

e2e33bfaec9493332e79f4635733f46403ac3b35

Base64:

7L2g