Unicode Finder

"쬀" U+CB00(HANGUL SYLLABLE JJWAELS)

U+CB00
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWAELS

Programming

C
\uCB00
JavaScript
\uCB00
Java
\uCB00
Json
\uCB00
Python
\uCB00
Perl
\x{CB00}
PHP
\x{CB00}
Ruby
\u{CB00}
Rust
\u{CB00}
Go
\uCB00

Web

CSS
\00CB00
HtmlDecimal
쬀
HtmlHexadecimal
쬀
Url
%EC%AC%80

Code

MD5
d3d65a78d03abddd6a2f881dc85b8424
Sha1
3b6c250fba0e1da7381f8d9402da390fdfdc3300
Base64
7KyA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB00';
console.log(char);  // Output: 쬀

Java:

char c = '\uCB00';
System.out.println(c);  // Output: 쬀

JSON:

{"text": "\uCB00"}  // Value: 쬀

Python:

char = '\uCB00'
print(char)  # Output: 쬀

Perl:

my $char = "\x{CB00}";
print $char;  # Output: 쬀

PHP:

$char = "\x{CB00}";
echo $char;  // Output: 쬀

Ruby:

char = "\u{CB00}"
puts char  # Output: 쬀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51968;</p>  <!-- Display: 쬀 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB00;</p>  <!-- Display: 쬀 -->

URL Encoding:

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

Encodings

MD5:

d3d65a78d03abddd6a2f881dc85b8424

SHA1:

3b6c250fba0e1da7381f8d9402da390fdfdc3300

Base64:

7KyA