Unicode Finder

"콿" U+CF7F(HANGUL SYLLABLE KWALH)

콿
U+CF7F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWALH

Programming

C
\uCF7F
JavaScript
\uCF7F
Java
\uCF7F
Json
\uCF7F
Python
\uCF7F
Perl
\x{CF7F}
PHP
\x{CF7F}
Ruby
\u{CF7F}
Rust
\u{CF7F}
Go
\uCF7F

Web

CSS
\00CF7F
HtmlDecimal
콿
HtmlHexadecimal
콿
Url
%EC%BD%BF

Code

MD5
adfabb064fbb00646cf15b4e65d3bedf
Sha1
029b4459420ddc7f9bddde81e44b89a3bc93e362
Base64
7L2/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF7F';
console.log(char);  // Output: 콿

Java:

char c = '\uCF7F';
System.out.println(c);  // Output: 콿

JSON:

{"text": "\uCF7F"}  // Value: 콿

Python:

char = '\uCF7F'
print(char)  # Output: 콿

Perl:

my $char = "\x{CF7F}";
print $char;  # Output: 콿

PHP:

$char = "\x{CF7F}";
echo $char;  // Output: 콿

Ruby:

char = "\u{CF7F}"
puts char  # Output: 콿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53119;</p>  <!-- Display: 콿 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF7F;</p>  <!-- Display: 콿 -->

URL Encoding:

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

Encodings

MD5:

adfabb064fbb00646cf15b4e65d3bedf

SHA1:

029b4459420ddc7f9bddde81e44b89a3bc93e362

Base64:

7L2/