Unicode Finder

"좛" U+C89B(HANGUL SYLLABLE JWALH)

U+C89B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JWALH

Programming

C
\uC89B
JavaScript
\uC89B
Java
\uC89B
Json
\uC89B
Python
\uC89B
Perl
\x{C89B}
PHP
\x{C89B}
Ruby
\u{C89B}
Rust
\u{C89B}
Go
\uC89B

Web

CSS
\00C89B
HtmlDecimal
좛
HtmlHexadecimal
좛
Url
%EC%A2%9B

Code

MD5
0244702bac5ddfa3d4fc4af5c24021d7
Sha1
65348d1b07e64ebb93134c2393656a6ee078a41b
Base64
7KKb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC89B';
console.log(char);  // Output: 좛

Java:

char c = '\uC89B';
System.out.println(c);  // Output: 좛

JSON:

{"text": "\uC89B"}  // Value: 좛

Python:

char = '\uC89B'
print(char)  # Output: 좛

Perl:

my $char = "\x{C89B}";
print $char;  # Output: 좛

PHP:

$char = "\x{C89B}";
echo $char;  // Output: 좛

Ruby:

char = "\u{C89B}"
puts char  # Output: 좛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51355;</p>  <!-- Display: 좛 -->

HTML Hexadecimal:

<p>HTML hex: &#xC89B;</p>  <!-- Display: 좛 -->

URL Encoding:

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

Encodings

MD5:

0244702bac5ddfa3d4fc4af5c24021d7

SHA1:

65348d1b07e64ebb93134c2393656a6ee078a41b

Base64:

7KKb