Unicode Finder

"쾁" U+CF81(HANGUL SYLLABLE KWAB)

U+CF81
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KWAB

Programming

C
\uCF81
JavaScript
\uCF81
Java
\uCF81
Json
\uCF81
Python
\uCF81
Perl
\x{CF81}
PHP
\x{CF81}
Ruby
\u{CF81}
Rust
\u{CF81}
Go
\uCF81

Web

CSS
\00CF81
HtmlDecimal
쾁
HtmlHexadecimal
쾁
Url
%EC%BE%81

Code

MD5
523a7870ad61fef07bed1e4090452f33
Sha1
34de87a12805699e2700b373de15871cbb7648b5
Base64
7L6B

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCF81';
console.log(char);  // Output: 쾁

Java:

char c = '\uCF81';
System.out.println(c);  // Output: 쾁

JSON:

{"text": "\uCF81"}  // Value: 쾁

Python:

char = '\uCF81'
print(char)  # Output: 쾁

Perl:

my $char = "\x{CF81}";
print $char;  # Output: 쾁

PHP:

$char = "\x{CF81}";
echo $char;  // Output: 쾁

Ruby:

char = "\u{CF81}"
puts char  # Output: 쾁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53121;</p>  <!-- Display: 쾁 -->

HTML Hexadecimal:

<p>HTML hex: &#xCF81;</p>  <!-- Display: 쾁 -->

URL Encoding:

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

Encodings

MD5:

523a7870ad61fef07bed1e4090452f33

SHA1:

34de87a12805699e2700b373de15871cbb7648b5

Base64:

7L6B