Unicode Finder

"좉" U+C889(HANGUL SYLLABLE JOT)

U+C889
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JOT

Programming

C
\uC889
JavaScript
\uC889
Java
\uC889
Json
\uC889
Python
\uC889
Perl
\x{C889}
PHP
\x{C889}
Ruby
\u{C889}
Rust
\u{C889}
Go
\uC889

Web

CSS
\00C889
HtmlDecimal
좉
HtmlHexadecimal
좉
Url
%EC%A2%89

Code

MD5
79dfe1837b578433f70370542e85fb2d
Sha1
658241729c76d94f91a4bb833e7f633d0e4b729f
Base64
7KKJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC889';
console.log(char);  // Output: 좉

Java:

char c = '\uC889';
System.out.println(c);  // Output: 좉

JSON:

{"text": "\uC889"}  // Value: 좉

Python:

char = '\uC889'
print(char)  # Output: 좉

Perl:

my $char = "\x{C889}";
print $char;  # Output: 좉

PHP:

$char = "\x{C889}";
echo $char;  // Output: 좉

Ruby:

char = "\u{C889}"
puts char  # Output: 좉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51337;</p>  <!-- Display: 좉 -->

HTML Hexadecimal:

<p>HTML hex: &#xC889;</p>  <!-- Display: 좉 -->

URL Encoding:

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

Encodings

MD5:

79dfe1837b578433f70370542e85fb2d

SHA1:

658241729c76d94f91a4bb833e7f633d0e4b729f

Base64:

7KKJ