Unicode Finder

"즬" U+C9AC(HANGUL SYLLABLE JYIL)

U+C9AC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYIL

Programming

C
\uC9AC
JavaScript
\uC9AC
Java
\uC9AC
Json
\uC9AC
Python
\uC9AC
Perl
\x{C9AC}
PHP
\x{C9AC}
Ruby
\u{C9AC}
Rust
\u{C9AC}
Go
\uC9AC

Web

CSS
\00C9AC
HtmlDecimal
즬
HtmlHexadecimal
즬
Url
%EC%A6%AC

Code

MD5
5a8b772b0cf2f0652b05a594879f5ddf
Sha1
e73dd55cd8bff58b54bfeeadda3304e0beb05e21
Base64
7Kas

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9AC';
console.log(char);  // Output: 즬

Java:

char c = '\uC9AC';
System.out.println(c);  // Output: 즬

JSON:

{"text": "\uC9AC"}  // Value: 즬

Python:

char = '\uC9AC'
print(char)  # Output: 즬

Perl:

my $char = "\x{C9AC}";
print $char;  # Output: 즬

PHP:

$char = "\x{C9AC}";
echo $char;  // Output: 즬

Ruby:

char = "\u{C9AC}"
puts char  # Output: 즬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51628;</p>  <!-- Display: 즬 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9AC;</p>  <!-- Display: 즬 -->

URL Encoding:

// 즬 URL encoding
https://unicodefinder.com/search.php?query=%EC%A6%AC

Encodings

MD5:

5a8b772b0cf2f0652b05a594879f5ddf

SHA1:

e73dd55cd8bff58b54bfeeadda3304e0beb05e21

Base64:

7Kas