Unicode Finder

"쾶" U+CFB6(HANGUL SYLLABLE KOELP)

U+CFB6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOELP

Programming

C
\uCFB6
JavaScript
\uCFB6
Java
\uCFB6
Json
\uCFB6
Python
\uCFB6
Perl
\x{CFB6}
PHP
\x{CFB6}
Ruby
\u{CFB6}
Rust
\u{CFB6}
Go
\uCFB6

Web

CSS
\00CFB6
HtmlDecimal
쾶
HtmlHexadecimal
쾶
Url
%EC%BE%B6

Code

MD5
89fac834f81bb303f91f28ee53c35735
Sha1
3582c60715cafec2f33ba47f489345d981ac24b2
Base64
7L62

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFB6';
console.log(char);  // Output: 쾶

Java:

char c = '\uCFB6';
System.out.println(c);  // Output: 쾶

JSON:

{"text": "\uCFB6"}  // Value: 쾶

Python:

char = '\uCFB6'
print(char)  # Output: 쾶

Perl:

my $char = "\x{CFB6}";
print $char;  # Output: 쾶

PHP:

$char = "\x{CFB6}";
echo $char;  // Output: 쾶

Ruby:

char = "\u{CFB6}"
puts char  # Output: 쾶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53174;</p>  <!-- Display: 쾶 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFB6;</p>  <!-- Display: 쾶 -->

URL Encoding:

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

Encodings

MD5:

89fac834f81bb303f91f28ee53c35735

SHA1:

3582c60715cafec2f33ba47f489345d981ac24b2

Base64:

7L62