Unicode Finder

"졡" U+C861(HANGUL SYLLABLE JYELT)

U+C861
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYELT

Programming

C
\uC861
JavaScript
\uC861
Java
\uC861
Json
\uC861
Python
\uC861
Perl
\x{C861}
PHP
\x{C861}
Ruby
\u{C861}
Rust
\u{C861}
Go
\uC861

Web

CSS
\00C861
HtmlDecimal
졡
HtmlHexadecimal
졡
Url
%EC%A1%A1

Code

MD5
bb82b4a05f711dde1f17578f9e45f7b8
Sha1
4067ed940b3ce4828cc2bfab6bd2ddddc699458f
Base64
7KGh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC861';
console.log(char);  // Output: 졡

Java:

char c = '\uC861';
System.out.println(c);  // Output: 졡

JSON:

{"text": "\uC861"}  // Value: 졡

Python:

char = '\uC861'
print(char)  # Output: 졡

Perl:

my $char = "\x{C861}";
print $char;  # Output: 졡

PHP:

$char = "\x{C861}";
echo $char;  // Output: 졡

Ruby:

char = "\u{C861}"
puts char  # Output: 졡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51297;</p>  <!-- Display: 졡 -->

HTML Hexadecimal:

<p>HTML hex: &#xC861;</p>  <!-- Display: 졡 -->

URL Encoding:

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

Encodings

MD5:

bb82b4a05f711dde1f17578f9e45f7b8

SHA1:

4067ed940b3ce4828cc2bfab6bd2ddddc699458f

Base64:

7KGh