Unicode Finder

"쾆" U+CF86(HANGUL SYLLABLE KWAJ)

U+CF86
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWAJ

Programming

C
\uCF86
JavaScript
\uCF86
Java
\uCF86
Json
\uCF86
Python
\uCF86
Perl
\x{CF86}
PHP
\x{CF86}
Ruby
\u{CF86}
Rust
\u{CF86}
Go
\uCF86

Web

CSS
\00CF86
HtmlDecimal
쾆
HtmlHexadecimal
쾆
Url
%EC%BE%86

Code

MD5
256a22a1e08a723b0a04e87af0827422
Sha1
77a6d43a1f306b64fe34c211e3df8e7bfad4e41c
Base64
7L6G

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF86';
console.log(char);  // Output: 쾆

Java:

char c = '\uCF86';
System.out.println(c);  // Output: 쾆

JSON:

{"text": "\uCF86"}  // Value: 쾆

Python:

char = '\uCF86'
print(char)  # Output: 쾆

Perl:

my $char = "\x{CF86}";
print $char;  # Output: 쾆

PHP:

$char = "\x{CF86}";
echo $char;  // Output: 쾆

Ruby:

char = "\u{CF86}"
puts char  # Output: 쾆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53126;</p>  <!-- Display: 쾆 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF86;</p>  <!-- Display: 쾆 -->

URL Encoding:

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

Encodings

MD5:

256a22a1e08a723b0a04e87af0827422

SHA1:

77a6d43a1f306b64fe34c211e3df8e7bfad4e41c

Base64:

7L6G