Unicode Finder

"쾱" U+CFB1(HANGUL SYLLABLE KOELG)

U+CFB1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOELG

Programming

C
\uCFB1
JavaScript
\uCFB1
Java
\uCFB1
Json
\uCFB1
Python
\uCFB1
Perl
\x{CFB1}
PHP
\x{CFB1}
Ruby
\u{CFB1}
Rust
\u{CFB1}
Go
\uCFB1

Web

CSS
\00CFB1
HtmlDecimal
쾱
HtmlHexadecimal
쾱
Url
%EC%BE%B1

Code

MD5
8be4b0dcab2ed7e544188040600edc7b
Sha1
e47b4c1719adcc86589f69e89924bf4135adff61
Base64
7L6x

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFB1';
console.log(char);  // Output: 쾱

Java:

char c = '\uCFB1';
System.out.println(c);  // Output: 쾱

JSON:

{"text": "\uCFB1"}  // Value: 쾱

Python:

char = '\uCFB1'
print(char)  # Output: 쾱

Perl:

my $char = "\x{CFB1}";
print $char;  # Output: 쾱

PHP:

$char = "\x{CFB1}";
echo $char;  // Output: 쾱

Ruby:

char = "\u{CFB1}"
puts char  # Output: 쾱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53169;</p>  <!-- Display: 쾱 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFB1;</p>  <!-- Display: 쾱 -->

URL Encoding:

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

Encodings

MD5:

8be4b0dcab2ed7e544188040600edc7b

SHA1:

e47b4c1719adcc86589f69e89924bf4135adff61

Base64:

7L6x