Unicode Finder

"콣" U+CF63(HANGUL SYLLABLE KOLH)

U+CF63
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOLH

Programming

C
\uCF63
JavaScript
\uCF63
Java
\uCF63
Json
\uCF63
Python
\uCF63
Perl
\x{CF63}
PHP
\x{CF63}
Ruby
\u{CF63}
Rust
\u{CF63}
Go
\uCF63

Web

CSS
\00CF63
HtmlDecimal
콣
HtmlHexadecimal
콣
Url
%EC%BD%A3

Code

MD5
3714d0abf3814d235fbc0ddedc425bdb
Sha1
7ef8fd5b981a4015f9fcc32d702ffac76c519a07
Base64
7L2j

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF63';
console.log(char);  // Output: 콣

Java:

char c = '\uCF63';
System.out.println(c);  // Output: 콣

JSON:

{"text": "\uCF63"}  // Value: 콣

Python:

char = '\uCF63'
print(char)  # Output: 콣

Perl:

my $char = "\x{CF63}";
print $char;  # Output: 콣

PHP:

$char = "\x{CF63}";
echo $char;  // Output: 콣

Ruby:

char = "\u{CF63}"
puts char  # Output: 콣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53091;</p>  <!-- Display: 콣 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF63;</p>  <!-- Display: 콣 -->

URL Encoding:

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

Encodings

MD5:

3714d0abf3814d235fbc0ddedc425bdb

SHA1:

7ef8fd5b981a4015f9fcc32d702ffac76c519a07

Base64:

7L2j