Unicode Finder

"즭" U+C9AD(HANGUL SYLLABLE JYILG)

U+C9AD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYILG

Programming

C
\uC9AD
JavaScript
\uC9AD
Java
\uC9AD
Json
\uC9AD
Python
\uC9AD
Perl
\x{C9AD}
PHP
\x{C9AD}
Ruby
\u{C9AD}
Rust
\u{C9AD}
Go
\uC9AD

Web

CSS
\00C9AD
HtmlDecimal
즭
HtmlHexadecimal
즭
Url
%EC%A6%AD

Code

MD5
ef9998560a26c4a36f40f6723ddd625e
Sha1
436e70fff9c5d99d4aea15ba35dea5531fe4c5eb
Base64
7Kat

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9AD';
console.log(char);  // Output: 즭

Java:

char c = '\uC9AD';
System.out.println(c);  // Output: 즭

JSON:

{"text": "\uC9AD"}  // Value: 즭

Python:

char = '\uC9AD'
print(char)  # Output: 즭

Perl:

my $char = "\x{C9AD}";
print $char;  # Output: 즭

PHP:

$char = "\x{C9AD}";
echo $char;  // Output: 즭

Ruby:

char = "\u{C9AD}"
puts char  # Output: 즭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51629;</p>  <!-- Display: 즭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9AD;</p>  <!-- Display: 즭 -->

URL Encoding:

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

Encodings

MD5:

ef9998560a26c4a36f40f6723ddd625e

SHA1:

436e70fff9c5d99d4aea15ba35dea5531fe4c5eb

Base64:

7Kat