Unicode Finder

"쮂" U+CB82(HANGUL SYLLABLE JJWEGG)

U+CB82
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJWEGG

Programming

C
\uCB82
JavaScript
\uCB82
Java
\uCB82
Json
\uCB82
Python
\uCB82
Perl
\x{CB82}
PHP
\x{CB82}
Ruby
\u{CB82}
Rust
\u{CB82}
Go
\uCB82

Web

CSS
\00CB82
HtmlDecimal
쮂
HtmlHexadecimal
쮂
Url
%EC%AE%82

Code

MD5
a978ada67087eadcaad0ee1eb9305d51
Sha1
a0c6ba7c1eeafc961b9cb062a1f56ffc411a5999
Base64
7K6C

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uCB82';
console.log(char);  // Output: 쮂

Java:

char c = '\uCB82';
System.out.println(c);  // Output: 쮂

JSON:

{"text": "\uCB82"}  // Value: 쮂

Python:

char = '\uCB82'
print(char)  # Output: 쮂

Perl:

my $char = "\x{CB82}";
print $char;  # Output: 쮂

PHP:

$char = "\x{CB82}";
echo $char;  // Output: 쮂

Ruby:

char = "\u{CB82}"
puts char  # Output: 쮂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#52098;</p>  <!-- Display: 쮂 -->

HTML Hexadecimal:

<p>HTML hex: &#xCB82;</p>  <!-- Display: 쮂 -->

URL Encoding:

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

Encodings

MD5:

a978ada67087eadcaad0ee1eb9305d51

SHA1:

a0c6ba7c1eeafc961b9cb062a1f56ffc411a5999

Base64:

7K6C