Unicode Finder

"쾬" U+CFAC(HANGUL SYLLABLE KOEN)

U+CFAC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOEN

Programming

C
\uCFAC
JavaScript
\uCFAC
Java
\uCFAC
Json
\uCFAC
Python
\uCFAC
Perl
\x{CFAC}
PHP
\x{CFAC}
Ruby
\u{CFAC}
Rust
\u{CFAC}
Go
\uCFAC

Web

CSS
\00CFAC
HtmlDecimal
쾬
HtmlHexadecimal
쾬
Url
%EC%BE%AC

Code

MD5
99ccc212c6acd244293aab78440eaf5e
Sha1
aa43a2105bb27219c478def7f09448ab4a19a168
Base64
7L6s

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFAC';
console.log(char);  // Output: 쾬

Java:

char c = '\uCFAC';
System.out.println(c);  // Output: 쾬

JSON:

{"text": "\uCFAC"}  // Value: 쾬

Python:

char = '\uCFAC'
print(char)  # Output: 쾬

Perl:

my $char = "\x{CFAC}";
print $char;  # Output: 쾬

PHP:

$char = "\x{CFAC}";
echo $char;  // Output: 쾬

Ruby:

char = "\u{CFAC}"
puts char  # Output: 쾬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53164;</p>  <!-- Display: 쾬 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFAC;</p>  <!-- Display: 쾬 -->

URL Encoding:

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

Encodings

MD5:

99ccc212c6acd244293aab78440eaf5e

SHA1:

aa43a2105bb27219c478def7f09448ab4a19a168

Base64:

7L6s