Unicode Finder

"즫" U+C9AB(HANGUL SYLLABLE JYID)

U+C9AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYID

Programming

C
\uC9AB
JavaScript
\uC9AB
Java
\uC9AB
Json
\uC9AB
Python
\uC9AB
Perl
\x{C9AB}
PHP
\x{C9AB}
Ruby
\u{C9AB}
Rust
\u{C9AB}
Go
\uC9AB

Web

CSS
\00C9AB
HtmlDecimal
즫
HtmlHexadecimal
즫
Url
%EC%A6%AB

Code

MD5
8bec0b8978c28413c01f9193289f9e33
Sha1
7635af4300a4b2957be56a5a3e5627b4339983a2
Base64
7Kar

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC9AB';
console.log(char);  // Output: 즫

Java:

char c = '\uC9AB';
System.out.println(c);  // Output: 즫

JSON:

{"text": "\uC9AB"}  // Value: 즫

Python:

char = '\uC9AB'
print(char)  # Output: 즫

Perl:

my $char = "\x{C9AB}";
print $char;  # Output: 즫

PHP:

$char = "\x{C9AB}";
echo $char;  // Output: 즫

Ruby:

char = "\u{C9AB}"
puts char  # Output: 즫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51627;</p>  <!-- Display: 즫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC9AB;</p>  <!-- Display: 즫 -->

URL Encoding:

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

Encodings

MD5:

8bec0b8978c28413c01f9193289f9e33

SHA1:

7635af4300a4b2957be56a5a3e5627b4339983a2

Base64:

7Kar