Unicode Finder

"쾿" U+CFBF(HANGUL SYLLABLE KOEC)

쾿
U+CFBF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOEC

Programming

C
\uCFBF
JavaScript
\uCFBF
Java
\uCFBF
Json
\uCFBF
Python
\uCFBF
Perl
\x{CFBF}
PHP
\x{CFBF}
Ruby
\u{CFBF}
Rust
\u{CFBF}
Go
\uCFBF

Web

CSS
\00CFBF
HtmlDecimal
쾿
HtmlHexadecimal
쾿
Url
%EC%BE%BF

Code

MD5
50e4f12b36ae26ff5bc4b0ed53e22c55
Sha1
92e93dd006066cdd4ee4ea6422714343df768d92
Base64
7L6/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFBF';
console.log(char);  // Output: 쾿

Java:

char c = '\uCFBF';
System.out.println(c);  // Output: 쾿

JSON:

{"text": "\uCFBF"}  // Value: 쾿

Python:

char = '\uCFBF'
print(char)  # Output: 쾿

Perl:

my $char = "\x{CFBF}";
print $char;  # Output: 쾿

PHP:

$char = "\x{CFBF}";
echo $char;  // Output: 쾿

Ruby:

char = "\u{CFBF}"
puts char  # Output: 쾿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53183;</p>  <!-- Display: 쾿 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFBF;</p>  <!-- Display: 쾿 -->

URL Encoding:

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

Encodings

MD5:

50e4f12b36ae26ff5bc4b0ed53e22c55

SHA1:

92e93dd006066cdd4ee4ea6422714343df768d92

Base64:

7L6/