Unicode Finder

"콢" U+CF62(HANGUL SYLLABLE KOLP)

U+CF62
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOLP

Programming

C
\uCF62
JavaScript
\uCF62
Java
\uCF62
Json
\uCF62
Python
\uCF62
Perl
\x{CF62}
PHP
\x{CF62}
Ruby
\u{CF62}
Rust
\u{CF62}
Go
\uCF62

Web

CSS
\00CF62
HtmlDecimal
콢
HtmlHexadecimal
콢
Url
%EC%BD%A2

Code

MD5
5c14fd6a60cd45e0fc13aaf241e60433
Sha1
d4cd689257ee4807afdcbd4cd99a3110f5b68fbd
Base64
7L2i

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF62';
console.log(char);  // Output: 콢

Java:

char c = '\uCF62';
System.out.println(c);  // Output: 콢

JSON:

{"text": "\uCF62"}  // Value: 콢

Python:

char = '\uCF62'
print(char)  # Output: 콢

Perl:

my $char = "\x{CF62}";
print $char;  # Output: 콢

PHP:

$char = "\x{CF62}";
echo $char;  // Output: 콢

Ruby:

char = "\u{CF62}"
puts char  # Output: 콢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53090;</p>  <!-- Display: 콢 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF62;</p>  <!-- Display: 콢 -->

URL Encoding:

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

Encodings

MD5:

5c14fd6a60cd45e0fc13aaf241e60433

SHA1:

d4cd689257ee4807afdcbd4cd99a3110f5b68fbd

Base64:

7L2i