Unicode Finder

"졉" U+C849(HANGUL SYLLABLE JYEOB)

U+C849
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYEOB

Programming

C
\uC849
JavaScript
\uC849
Java
\uC849
Json
\uC849
Python
\uC849
Perl
\x{C849}
PHP
\x{C849}
Ruby
\u{C849}
Rust
\u{C849}
Go
\uC849

Web

CSS
\00C849
HtmlDecimal
졉
HtmlHexadecimal
졉
Url
%EC%A1%89

Code

MD5
3ddef7300f6a5bd17e86ff2d6d0fcd0e
Sha1
8f6b5d2fc22fa8f2725aebeaf100068c10434c91
Base64
7KGJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC849';
console.log(char);  // Output: 졉

Java:

char c = '\uC849';
System.out.println(c);  // Output: 졉

JSON:

{"text": "\uC849"}  // Value: 졉

Python:

char = '\uC849'
print(char)  # Output: 졉

Perl:

my $char = "\x{C849}";
print $char;  # Output: 졉

PHP:

$char = "\x{C849}";
echo $char;  // Output: 졉

Ruby:

char = "\u{C849}"
puts char  # Output: 졉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51273;</p>  <!-- Display: 졉 -->

HTML Hexadecimal:

<p>HTML hex: &#xC849;</p>  <!-- Display: 졉 -->

URL Encoding:

// 졉 URL encoding
https://unicodefinder.com/search.php?query=%EC%A1%89

Encodings

MD5:

3ddef7300f6a5bd17e86ff2d6d0fcd0e

SHA1:

8f6b5d2fc22fa8f2725aebeaf100068c10434c91

Base64:

7KGJ