Unicode Finder

"콃" U+CF43(HANGUL SYLLABLE KYELB)

U+CF43
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYELB

Programming

C
\uCF43
JavaScript
\uCF43
Java
\uCF43
Json
\uCF43
Python
\uCF43
Perl
\x{CF43}
PHP
\x{CF43}
Ruby
\u{CF43}
Rust
\u{CF43}
Go
\uCF43

Web

CSS
\00CF43
HtmlDecimal
콃
HtmlHexadecimal
콃
Url
%EC%BD%83

Code

MD5
7c25b7c4814fcf98288ff600f92cf0e7
Sha1
82895f8437eda64da1a64c0c7d964ea73da51f88
Base64
7L2D

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF43';
console.log(char);  // Output: 콃

Java:

char c = '\uCF43';
System.out.println(c);  // Output: 콃

JSON:

{"text": "\uCF43"}  // Value: 콃

Python:

char = '\uCF43'
print(char)  # Output: 콃

Perl:

my $char = "\x{CF43}";
print $char;  # Output: 콃

PHP:

$char = "\x{CF43}";
echo $char;  // Output: 콃

Ruby:

char = "\u{CF43}"
puts char  # Output: 콃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53059;</p>  <!-- Display: 콃 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF43;</p>  <!-- Display: 콃 -->

URL Encoding:

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

Encodings

MD5:

7c25b7c4814fcf98288ff600f92cf0e7

SHA1:

82895f8437eda64da1a64c0c7d964ea73da51f88

Base64:

7L2D