Unicode Finder

"쾽" U+CFBD(HANGUL SYLLABLE KOENG)

U+CFBD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOENG

Programming

C
\uCFBD
JavaScript
\uCFBD
Java
\uCFBD
Json
\uCFBD
Python
\uCFBD
Perl
\x{CFBD}
PHP
\x{CFBD}
Ruby
\u{CFBD}
Rust
\u{CFBD}
Go
\uCFBD

Web

CSS
\00CFBD
HtmlDecimal
쾽
HtmlHexadecimal
쾽
Url
%EC%BE%BD

Code

MD5
4744d409d2daf6587577770f9e65f155
Sha1
fcd416622ff821775a7b11a03e993e9b33bf1507
Base64
7L69

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFBD';
console.log(char);  // Output: 쾽

Java:

char c = '\uCFBD';
System.out.println(c);  // Output: 쾽

JSON:

{"text": "\uCFBD"}  // Value: 쾽

Python:

char = '\uCFBD'
print(char)  # Output: 쾽

Perl:

my $char = "\x{CFBD}";
print $char;  # Output: 쾽

PHP:

$char = "\x{CFBD}";
echo $char;  // Output: 쾽

Ruby:

char = "\u{CFBD}"
puts char  # Output: 쾽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53181;</p>  <!-- Display: 쾽 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFBD;</p>  <!-- Display: 쾽 -->

URL Encoding:

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

Encodings

MD5:

4744d409d2daf6587577770f9e65f155

SHA1:

fcd416622ff821775a7b11a03e993e9b33bf1507

Base64:

7L69