Unicode Finder

"잟" U+C79F(HANGUL SYLLABLE JALH)

U+C79F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JALH

Programming

C
\uC79F
JavaScript
\uC79F
Java
\uC79F
Json
\uC79F
Python
\uC79F
Perl
\x{C79F}
PHP
\x{C79F}
Ruby
\u{C79F}
Rust
\u{C79F}
Go
\uC79F

Web

CSS
\00C79F
HtmlDecimal
잟
HtmlHexadecimal
잟
Url
%EC%9E%9F

Code

MD5
4bc5d2337d3c4d3ba8f06d2529ae3b2f
Sha1
eb39ce484f3d91e7db094a5e9396495f87359223
Base64
7J6f

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC79F';
console.log(char);  // Output: 잟

Java:

char c = '\uC79F';
System.out.println(c);  // Output: 잟

JSON:

{"text": "\uC79F"}  // Value: 잟

Python:

char = '\uC79F'
print(char)  # Output: 잟

Perl:

my $char = "\x{C79F}";
print $char;  # Output: 잟

PHP:

$char = "\x{C79F}";
echo $char;  // Output: 잟

Ruby:

char = "\u{C79F}"
puts char  # Output: 잟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51103;</p>  <!-- Display: 잟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC79F;</p>  <!-- Display: 잟 -->

URL Encoding:

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

Encodings

MD5:

4bc5d2337d3c4d3ba8f06d2529ae3b2f

SHA1:

eb39ce484f3d91e7db094a5e9396495f87359223

Base64:

7J6f