Unicode Finder

"짰" U+C9F0(HANGUL SYLLABLE JJASS)

U+C9F0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JJASS

Programming

C
\uC9F0
JavaScript
\uC9F0
Java
\uC9F0
Json
\uC9F0
Python
\uC9F0
Perl
\x{C9F0}
PHP
\x{C9F0}
Ruby
\u{C9F0}
Rust
\u{C9F0}
Go
\uC9F0

Web

CSS
\00C9F0
HtmlDecimal
짰
HtmlHexadecimal
짰
Url
%EC%A7%B0

Code

MD5
932d61b903e0b46270621d71930ae127
Sha1
668dcc39da43fd710ace20b0a797099ba439fbb7
Base64
7Kew

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9F0';
console.log(char);  // Output: 짰

Java:

char c = '\uC9F0';
System.out.println(c);  // Output: 짰

JSON:

{"text": "\uC9F0"}  // Value: 짰

Python:

char = '\uC9F0'
print(char)  # Output: 짰

Perl:

my $char = "\x{C9F0}";
print $char;  # Output: 짰

PHP:

$char = "\x{C9F0}";
echo $char;  // Output: 짰

Ruby:

char = "\u{C9F0}"
puts char  # Output: 짰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51696;</p>  <!-- Display: 짰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9F0;</p>  <!-- Display: 짰 -->

URL Encoding:

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

Encodings

MD5:

932d61b903e0b46270621d71930ae127

SHA1:

668dcc39da43fd710ace20b0a797099ba439fbb7

Base64:

7Kew