Unicode Finder

"읙" U+C759(HANGUL SYLLABLE YIG)

U+C759
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YIG

Programming

C
\uC759
JavaScript
\uC759
Java
\uC759
Json
\uC759
Python
\uC759
Perl
\x{C759}
PHP
\x{C759}
Ruby
\u{C759}
Rust
\u{C759}
Go
\uC759

Web

CSS
\00C759
HtmlDecimal
읙
HtmlHexadecimal
읙
Url
%EC%9D%99

Code

MD5
338636e5e917d8479c0dc072076deede
Sha1
43f1770ef36c48f0689b2b9d59d354d17fdfd06b
Base64
7J2Z

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC759';
console.log(char);  // Output: 읙

Java:

char c = '\uC759';
System.out.println(c);  // Output: 읙

JSON:

{"text": "\uC759"}  // Value: 읙

Python:

char = '\uC759'
print(char)  # Output: 읙

Perl:

my $char = "\x{C759}";
print $char;  # Output: 읙

PHP:

$char = "\x{C759}";
echo $char;  // Output: 읙

Ruby:

char = "\u{C759}"
puts char  # Output: 읙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51033;</p>  <!-- Display: 읙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC759;</p>  <!-- Display: 읙 -->

URL Encoding:

// 읙 URL encoding
https://unicodefinder.com/search.php?query=%EC%9D%99

Encodings

MD5:

338636e5e917d8479c0dc072076deede

SHA1:

43f1770ef36c48f0689b2b9d59d354d17fdfd06b

Base64:

7J2Z