Unicode Finder

"죫" U+C8EB(HANGUL SYLLABLE JYOLB)

U+C8EB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYOLB

Programming

C
\uC8EB
JavaScript
\uC8EB
Java
\uC8EB
Json
\uC8EB
Python
\uC8EB
Perl
\x{C8EB}
PHP
\x{C8EB}
Ruby
\u{C8EB}
Rust
\u{C8EB}
Go
\uC8EB

Web

CSS
\00C8EB
HtmlDecimal
죫
HtmlHexadecimal
죫
Url
%EC%A3%AB

Code

MD5
444ebfe3fd0c7ffa21ef5c50e81abef0
Sha1
1b33bf87a8335239fee2f49fd1e4398b372eb769
Base64
7KOr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC8EB';
console.log(char);  // Output: 죫

Java:

char c = '\uC8EB';
System.out.println(c);  // Output: 죫

JSON:

{"text": "\uC8EB"}  // Value: 죫

Python:

char = '\uC8EB'
print(char)  # Output: 죫

Perl:

my $char = "\x{C8EB}";
print $char;  # Output: 죫

PHP:

$char = "\x{C8EB}";
echo $char;  // Output: 죫

Ruby:

char = "\u{C8EB}"
puts char  # Output: 죫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51435;</p>  <!-- Display: 죫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC8EB;</p>  <!-- Display: 죫 -->

URL Encoding:

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

Encodings

MD5:

444ebfe3fd0c7ffa21ef5c50e81abef0

SHA1:

1b33bf87a8335239fee2f49fd1e4398b372eb769

Base64:

7KOr