Unicode Finder

"쟺" U+C7FA(HANGUL SYLLABLE JYAEJ)

U+C7FA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYAEJ

Programming

C
\uC7FA
JavaScript
\uC7FA
Java
\uC7FA
Json
\uC7FA
Python
\uC7FA
Perl
\x{C7FA}
PHP
\x{C7FA}
Ruby
\u{C7FA}
Rust
\u{C7FA}
Go
\uC7FA

Web

CSS
\00C7FA
HtmlDecimal
쟺
HtmlHexadecimal
쟺
Url
%EC%9F%BA

Code

MD5
d08d519aa43cc75eede110233dd1f8e6
Sha1
f288e86e6e5de8013b1ab92484997b5fa2a7712b
Base64
7J+6

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7FA';
console.log(char);  // Output: 쟺

Java:

char c = '\uC7FA';
System.out.println(c);  // Output: 쟺

JSON:

{"text": "\uC7FA"}  // Value: 쟺

Python:

char = '\uC7FA'
print(char)  # Output: 쟺

Perl:

my $char = "\x{C7FA}";
print $char;  # Output: 쟺

PHP:

$char = "\x{C7FA}";
echo $char;  // Output: 쟺

Ruby:

char = "\u{C7FA}"
puts char  # Output: 쟺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51194;</p>  <!-- Display: 쟺 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7FA;</p>  <!-- Display: 쟺 -->

URL Encoding:

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

Encodings

MD5:

d08d519aa43cc75eede110233dd1f8e6

SHA1:

f288e86e6e5de8013b1ab92484997b5fa2a7712b

Base64:

7J+6