Unicode Finder

"쾸" U+CFB8(HANGUL SYLLABLE KOEM)

U+CFB8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOEM

Programming

C
\uCFB8
JavaScript
\uCFB8
Java
\uCFB8
Json
\uCFB8
Python
\uCFB8
Perl
\x{CFB8}
PHP
\x{CFB8}
Ruby
\u{CFB8}
Rust
\u{CFB8}
Go
\uCFB8

Web

CSS
\00CFB8
HtmlDecimal
쾸
HtmlHexadecimal
쾸
Url
%EC%BE%B8

Code

MD5
8d614930c1c7a0ab6fe0ab38878ee51f
Sha1
bb6d2f21edaa3fd9ffd74dfcaa67d82990e7c73d
Base64
7L64

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFB8';
console.log(char);  // Output: 쾸

Java:

char c = '\uCFB8';
System.out.println(c);  // Output: 쾸

JSON:

{"text": "\uCFB8"}  // Value: 쾸

Python:

char = '\uCFB8'
print(char)  # Output: 쾸

Perl:

my $char = "\x{CFB8}";
print $char;  # Output: 쾸

PHP:

$char = "\x{CFB8}";
echo $char;  // Output: 쾸

Ruby:

char = "\u{CFB8}"
puts char  # Output: 쾸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53176;</p>  <!-- Display: 쾸 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFB8;</p>  <!-- Display: 쾸 -->

URL Encoding:

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

Encodings

MD5:

8d614930c1c7a0ab6fe0ab38878ee51f

SHA1:

bb6d2f21edaa3fd9ffd74dfcaa67d82990e7c73d

Base64:

7L64