Unicode Finder

"좫" U+C8AB(HANGUL SYLLABLE JWAEGS)

U+C8AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWAEGS

Programming

C
\uC8AB
JavaScript
\uC8AB
Java
\uC8AB
Json
\uC8AB
Python
\uC8AB
Perl
\x{C8AB}
PHP
\x{C8AB}
Ruby
\u{C8AB}
Rust
\u{C8AB}
Go
\uC8AB

Web

CSS
\00C8AB
HtmlDecimal
좫
HtmlHexadecimal
좫
Url
%EC%A2%AB

Code

MD5
4198eac0eddb427eb45a925c2a383876
Sha1
a162439e92efe36f3a31a3f8be06287c1dfd55f4
Base64
7KKr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8AB';
console.log(char);  // Output: 좫

Java:

char c = '\uC8AB';
System.out.println(c);  // Output: 좫

JSON:

{"text": "\uC8AB"}  // Value: 좫

Python:

char = '\uC8AB'
print(char)  # Output: 좫

Perl:

my $char = "\x{C8AB}";
print $char;  # Output: 좫

PHP:

$char = "\x{C8AB}";
echo $char;  // Output: 좫

Ruby:

char = "\u{C8AB}"
puts char  # Output: 좫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51371;</p>  <!-- Display: 좫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8AB;</p>  <!-- Display: 좫 -->

URL Encoding:

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

Encodings

MD5:

4198eac0eddb427eb45a925c2a383876

SHA1:

a162439e92efe36f3a31a3f8be06287c1dfd55f4

Base64:

7KKr