Unicode Finder

"쾻" U+CFBB(HANGUL SYLLABLE KOES)

U+CFBB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOES

Programming

C
\uCFBB
JavaScript
\uCFBB
Java
\uCFBB
Json
\uCFBB
Python
\uCFBB
Perl
\x{CFBB}
PHP
\x{CFBB}
Ruby
\u{CFBB}
Rust
\u{CFBB}
Go
\uCFBB

Web

CSS
\00CFBB
HtmlDecimal
쾻
HtmlHexadecimal
쾻
Url
%EC%BE%BB

Code

MD5
477720fba6d43595266f02aa549dc9cd
Sha1
1361ab990bf07236ff2433b79db4ddd6d17b5e5f
Base64
7L67

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFBB';
console.log(char);  // Output: 쾻

Java:

char c = '\uCFBB';
System.out.println(c);  // Output: 쾻

JSON:

{"text": "\uCFBB"}  // Value: 쾻

Python:

char = '\uCFBB'
print(char)  # Output: 쾻

Perl:

my $char = "\x{CFBB}";
print $char;  # Output: 쾻

PHP:

$char = "\x{CFBB}";
echo $char;  // Output: 쾻

Ruby:

char = "\u{CFBB}"
puts char  # Output: 쾻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53179;</p>  <!-- Display: 쾻 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFBB;</p>  <!-- Display: 쾻 -->

URL Encoding:

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

Encodings

MD5:

477720fba6d43595266f02aa549dc9cd

SHA1:

1361ab990bf07236ff2433b79db4ddd6d17b5e5f

Base64:

7L67