Unicode Finder

"쮠" U+CBA0(HANGUL SYLLABLE JJWIN)

U+CBA0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWIN

Programming

C
\uCBA0
JavaScript
\uCBA0
Java
\uCBA0
Json
\uCBA0
Python
\uCBA0
Perl
\x{CBA0}
PHP
\x{CBA0}
Ruby
\u{CBA0}
Rust
\u{CBA0}
Go
\uCBA0

Web

CSS
\00CBA0
HtmlDecimal
쮠
HtmlHexadecimal
쮠
Url
%EC%AE%A0

Code

MD5
819b34ddaf67d39d36bcd88bc08165ef
Sha1
546c0f408d815cda599e74a5e98789c96a145616
Base64
7K6g

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCBA0';
console.log(char);  // Output: 쮠

Java:

char c = '\uCBA0';
System.out.println(c);  // Output: 쮠

JSON:

{"text": "\uCBA0"}  // Value: 쮠

Python:

char = '\uCBA0'
print(char)  # Output: 쮠

Perl:

my $char = "\x{CBA0}";
print $char;  # Output: 쮠

PHP:

$char = "\x{CBA0}";
echo $char;  // Output: 쮠

Ruby:

char = "\u{CBA0}"
puts char  # Output: 쮠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52128;</p>  <!-- Display: 쮠 -->

HTML Hexadecimal:

<p>HTML hex: &#xCBA0;</p>  <!-- Display: 쮠 -->

URL Encoding:

// 쮠 URL encoding
https://unicodefinder.com/search.php?query=%EC%AE%A0

Encodings

MD5:

819b34ddaf67d39d36bcd88bc08165ef

SHA1:

546c0f408d815cda599e74a5e98789c96a145616

Base64:

7K6g