Unicode Finder

"쾵" U+CFB5(HANGUL SYLLABLE KOELT)

U+CFB5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE KOELT

Programming

C
\uCFB5
JavaScript
\uCFB5
Java
\uCFB5
Json
\uCFB5
Python
\uCFB5
Perl
\x{CFB5}
PHP
\x{CFB5}
Ruby
\u{CFB5}
Rust
\u{CFB5}
Go
\uCFB5

Web

CSS
\00CFB5
HtmlDecimal
쾵
HtmlHexadecimal
쾵
Url
%EC%BE%B5

Code

MD5
7f5e9d504416a4ac3201a05d4a17cdc7
Sha1
9093de7219a0dad4cf631ef57ba55eea149243da
Base64
7L61

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCFB5';
console.log(char);  // Output: 쾵

Java:

char c = '\uCFB5';
System.out.println(c);  // Output: 쾵

JSON:

{"text": "\uCFB5"}  // Value: 쾵

Python:

char = '\uCFB5'
print(char)  # Output: 쾵

Perl:

my $char = "\x{CFB5}";
print $char;  # Output: 쾵

PHP:

$char = "\x{CFB5}";
echo $char;  // Output: 쾵

Ruby:

char = "\u{CFB5}"
puts char  # Output: 쾵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#53173;</p>  <!-- Display: 쾵 -->

HTML Hexadecimal:

<p>HTML hex: &#xCFB5;</p>  <!-- Display: 쾵 -->

URL Encoding:

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

Encodings

MD5:

7f5e9d504416a4ac3201a05d4a17cdc7

SHA1:

9093de7219a0dad4cf631ef57ba55eea149243da

Base64:

7L61