Unicode Finder

"잇" U+C787(HANGUL SYLLABLE IS)

U+C787
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE IS

Programming

C
\uC787
JavaScript
\uC787
Java
\uC787
Json
\uC787
Python
\uC787
Perl
\x{C787}
PHP
\x{C787}
Ruby
\u{C787}
Rust
\u{C787}
Go
\uC787

Web

CSS
\00C787
HtmlDecimal
잇
HtmlHexadecimal
잇
Url
%EC%9E%87

Code

MD5
14322114fa06612dd8df23e2d9486cd9
Sha1
5952baced64c156752efd1a658115f8f1dda537e
Base64
7J6H

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC787';
console.log(char);  // Output: 잇

Java:

char c = '\uC787';
System.out.println(c);  // Output: 잇

JSON:

{"text": "\uC787"}  // Value: 잇

Python:

char = '\uC787'
print(char)  # Output: 잇

Perl:

my $char = "\x{C787}";
print $char;  # Output: 잇

PHP:

$char = "\x{C787}";
echo $char;  // Output: 잇

Ruby:

char = "\u{C787}"
puts char  # Output: 잇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51079;</p>  <!-- Display: 잇 -->

HTML Hexadecimal:

<p>HTML hex: &#xC787;</p>  <!-- Display: 잇 -->

URL Encoding:

// 잇 URL encoding
https://unicodefinder.com/search.php?query=%EC%9E%87

Encodings

MD5:

14322114fa06612dd8df23e2d9486cd9

SHA1:

5952baced64c156752efd1a658115f8f1dda537e

Base64:

7J6H