Unicode Finder

"쿋" U+CFCB(HANGUL SYLLABLE KYOD)

U+CFCB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KYOD

Programming

C
\uCFCB
JavaScript
\uCFCB
Java
\uCFCB
Json
\uCFCB
Python
\uCFCB
Perl
\x{CFCB}
PHP
\x{CFCB}
Ruby
\u{CFCB}
Rust
\u{CFCB}
Go
\uCFCB

Web

CSS
\00CFCB
HtmlDecimal
쿋
HtmlHexadecimal
쿋
Url
%EC%BF%8B

Code

MD5
597770657ec4165029a902f48749063c
Sha1
623cefda41790d215ebfc8de12a1270a98861b2b
Base64
7L+L

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFCB';
console.log(char);  // Output: 쿋

Java:

char c = '\uCFCB';
System.out.println(c);  // Output: 쿋

JSON:

{"text": "\uCFCB"}  // Value: 쿋

Python:

char = '\uCFCB'
print(char)  # Output: 쿋

Perl:

my $char = "\x{CFCB}";
print $char;  # Output: 쿋

PHP:

$char = "\x{CFCB}";
echo $char;  // Output: 쿋

Ruby:

char = "\u{CFCB}"
puts char  # Output: 쿋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53195;</p>  <!-- Display: 쿋 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFCB;</p>  <!-- Display: 쿋 -->

URL Encoding:

// 쿋 URL encoding
https://unicodefinder.com/search.php?query=%EC%BF%8B

Encodings

MD5:

597770657ec4165029a902f48749063c

SHA1:

623cefda41790d215ebfc8de12a1270a98861b2b

Base64:

7L+L