Unicode Finder

"콬" U+CF6C(HANGUL SYLLABLE KOK)

U+CF6C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOK

Programming

C
\uCF6C
JavaScript
\uCF6C
Java
\uCF6C
Json
\uCF6C
Python
\uCF6C
Perl
\x{CF6C}
PHP
\x{CF6C}
Ruby
\u{CF6C}
Rust
\u{CF6C}
Go
\uCF6C

Web

CSS
\00CF6C
HtmlDecimal
콬
HtmlHexadecimal
콬
Url
%EC%BD%AC

Code

MD5
72c1b7af988f0c4338bca19fd3f2f260
Sha1
16b6d843d482b6692d47e667add87da541ee8b11
Base64
7L2s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF6C';
console.log(char);  // Output: 콬

Java:

char c = '\uCF6C';
System.out.println(c);  // Output: 콬

JSON:

{"text": "\uCF6C"}  // Value: 콬

Python:

char = '\uCF6C'
print(char)  # Output: 콬

Perl:

my $char = "\x{CF6C}";
print $char;  # Output: 콬

PHP:

$char = "\x{CF6C}";
echo $char;  // Output: 콬

Ruby:

char = "\u{CF6C}"
puts char  # Output: 콬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53100;</p>  <!-- Display: 콬 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF6C;</p>  <!-- Display: 콬 -->

URL Encoding:

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

Encodings

MD5:

72c1b7af988f0c4338bca19fd3f2f260

SHA1:

16b6d843d482b6692d47e667add87da541ee8b11

Base64:

7L2s