Unicode Finder

"쭕" U+CB55(HANGUL SYLLABLE JJULT)

U+CB55
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJULT

Programming

C
\uCB55
JavaScript
\uCB55
Java
\uCB55
Json
\uCB55
Python
\uCB55
Perl
\x{CB55}
PHP
\x{CB55}
Ruby
\u{CB55}
Rust
\u{CB55}
Go
\uCB55

Web

CSS
\00CB55
HtmlDecimal
쭕
HtmlHexadecimal
쭕
Url
%EC%AD%95

Code

MD5
eb316f8e919313249714561b23f885bd
Sha1
cd165d4ce15bc4f13183d43faf8794d6919fd722
Base64
7K2V

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB55';
console.log(char);  // Output: 쭕

Java:

char c = '\uCB55';
System.out.println(c);  // Output: 쭕

JSON:

{"text": "\uCB55"}  // Value: 쭕

Python:

char = '\uCB55'
print(char)  # Output: 쭕

Perl:

my $char = "\x{CB55}";
print $char;  # Output: 쭕

PHP:

$char = "\x{CB55}";
echo $char;  // Output: 쭕

Ruby:

char = "\u{CB55}"
puts char  # Output: 쭕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52053;</p>  <!-- Display: 쭕 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB55;</p>  <!-- Display: 쭕 -->

URL Encoding:

// 쭕 URL encoding
https://unicodefinder.com/search.php?query=%EC%AD%95

Encodings

MD5:

eb316f8e919313249714561b23f885bd

SHA1:

cd165d4ce15bc4f13183d43faf8794d6919fd722

Base64:

7K2V