Unicode Finder

"짫" U+C9EB(HANGUL SYLLABLE JJALH)

U+C9EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJALH

Programming

C
\uC9EB
JavaScript
\uC9EB
Java
\uC9EB
Json
\uC9EB
Python
\uC9EB
Perl
\x{C9EB}
PHP
\x{C9EB}
Ruby
\u{C9EB}
Rust
\u{C9EB}
Go
\uC9EB

Web

CSS
\00C9EB
HtmlDecimal
짫
HtmlHexadecimal
짫
Url
%EC%A7%AB

Code

MD5
e07fdb39ceae60c564287a1c0b27496b
Sha1
af4ab8ed25e6a93d086d6ca780aa89c939dcf9d9
Base64
7Ker

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9EB';
console.log(char);  // Output: 짫

Java:

char c = '\uC9EB';
System.out.println(c);  // Output: 짫

JSON:

{"text": "\uC9EB"}  // Value: 짫

Python:

char = '\uC9EB'
print(char)  # Output: 짫

Perl:

my $char = "\x{C9EB}";
print $char;  # Output: 짫

PHP:

$char = "\x{C9EB}";
echo $char;  // Output: 짫

Ruby:

char = "\u{C9EB}"
puts char  # Output: 짫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51691;</p>  <!-- Display: 짫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9EB;</p>  <!-- Display: 짫 -->

URL Encoding:

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

Encodings

MD5:

e07fdb39ceae60c564287a1c0b27496b

SHA1:

af4ab8ed25e6a93d086d6ca780aa89c939dcf9d9

Base64:

7Ker