Unicode Finder

"잺" U+C7BA(HANGUL SYLLABLE JAELP)

U+C7BA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JAELP

Programming

C
\uC7BA
JavaScript
\uC7BA
Java
\uC7BA
Json
\uC7BA
Python
\uC7BA
Perl
\x{C7BA}
PHP
\x{C7BA}
Ruby
\u{C7BA}
Rust
\u{C7BA}
Go
\uC7BA

Web

CSS
\00C7BA
HtmlDecimal
잺
HtmlHexadecimal
잺
Url
%EC%9E%BA

Code

MD5
9f99fa69706df8e67d5763383938d0d2
Sha1
f12027598fccd4b9a973ecceb55693150178c9e2
Base64
7J66

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7BA';
console.log(char);  // Output: 잺

Java:

char c = '\uC7BA';
System.out.println(c);  // Output: 잺

JSON:

{"text": "\uC7BA"}  // Value: 잺

Python:

char = '\uC7BA'
print(char)  # Output: 잺

Perl:

my $char = "\x{C7BA}";
print $char;  # Output: 잺

PHP:

$char = "\x{C7BA}";
echo $char;  // Output: 잺

Ruby:

char = "\u{C7BA}"
puts char  # Output: 잺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51130;</p>  <!-- Display: 잺 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7BA;</p>  <!-- Display: 잺 -->

URL Encoding:

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

Encodings

MD5:

9f99fa69706df8e67d5763383938d0d2

SHA1:

f12027598fccd4b9a973ecceb55693150178c9e2

Base64:

7J66