Unicode Finder

"젙" U+C819(HANGUL SYLLABLE JEOT)

U+C819
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JEOT

Programming

C
\uC819
JavaScript
\uC819
Java
\uC819
Json
\uC819
Python
\uC819
Perl
\x{C819}
PHP
\x{C819}
Ruby
\u{C819}
Rust
\u{C819}
Go
\uC819

Web

CSS
\00C819
HtmlDecimal
젙
HtmlHexadecimal
젙
Url
%EC%A0%99

Code

MD5
cd975a533dc1ca6b437d71ef0f76bcd3
Sha1
255fe22ca25ee113df67f914cb2e6ee49ab805b2
Base64
7KCZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC819';
console.log(char);  // Output: 젙

Java:

char c = '\uC819';
System.out.println(c);  // Output: 젙

JSON:

{"text": "\uC819"}  // Value: 젙

Python:

char = '\uC819'
print(char)  # Output: 젙

Perl:

my $char = "\x{C819}";
print $char;  # Output: 젙

PHP:

$char = "\x{C819}";
echo $char;  // Output: 젙

Ruby:

char = "\u{C819}"
puts char  # Output: 젙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51225;</p>  <!-- Display: 젙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC819;</p>  <!-- Display: 젙 -->

URL Encoding:

// 젙 URL encoding
https://unicodefinder.com/search.php?query=%EC%A0%99

Encodings

MD5:

cd975a533dc1ca6b437d71ef0f76bcd3

SHA1:

255fe22ca25ee113df67f914cb2e6ee49ab805b2

Base64:

7KCZ