Unicode Finder

"좢" U+C8A2(HANGUL SYLLABLE JWAJ)

U+C8A2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWAJ

Programming

C
\uC8A2
JavaScript
\uC8A2
Java
\uC8A2
Json
\uC8A2
Python
\uC8A2
Perl
\x{C8A2}
PHP
\x{C8A2}
Ruby
\u{C8A2}
Rust
\u{C8A2}
Go
\uC8A2

Web

CSS
\00C8A2
HtmlDecimal
좢
HtmlHexadecimal
좢
Url
%EC%A2%A2

Code

MD5
6aac91206da3ff139b19eae32edfc52d
Sha1
d284e40d1e01c265e5a1de913dc399811669429b
Base64
7KKi

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8A2';
console.log(char);  // Output: 좢

Java:

char c = '\uC8A2';
System.out.println(c);  // Output: 좢

JSON:

{"text": "\uC8A2"}  // Value: 좢

Python:

char = '\uC8A2'
print(char)  # Output: 좢

Perl:

my $char = "\x{C8A2}";
print $char;  # Output: 좢

PHP:

$char = "\x{C8A2}";
echo $char;  // Output: 좢

Ruby:

char = "\u{C8A2}"
puts char  # Output: 좢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51362;</p>  <!-- Display: 좢 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8A2;</p>  <!-- Display: 좢 -->

URL Encoding:

// 좢 URL encoding
https://unicodefinder.com/search.php?query=%EC%A2%A2

Encodings

MD5:

6aac91206da3ff139b19eae32edfc52d

SHA1:

d284e40d1e01c265e5a1de913dc399811669429b

Base64:

7KKi