Unicode Finder

"쟻" U+C7FB(HANGUL SYLLABLE JYAEC)

U+C7FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYAEC

Programming

C
\uC7FB
JavaScript
\uC7FB
Java
\uC7FB
Json
\uC7FB
Python
\uC7FB
Perl
\x{C7FB}
PHP
\x{C7FB}
Ruby
\u{C7FB}
Rust
\u{C7FB}
Go
\uC7FB

Web

CSS
\00C7FB
HtmlDecimal
쟻
HtmlHexadecimal
쟻
Url
%EC%9F%BB

Code

MD5
ab73bd1d9347231981d324cbe5776688
Sha1
3888d3e274e8bc0c708a29cd7c1798d31c768ff7
Base64
7J+7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7FB';
console.log(char);  // Output: 쟻

Java:

char c = '\uC7FB';
System.out.println(c);  // Output: 쟻

JSON:

{"text": "\uC7FB"}  // Value: 쟻

Python:

char = '\uC7FB'
print(char)  # Output: 쟻

Perl:

my $char = "\x{C7FB}";
print $char;  # Output: 쟻

PHP:

$char = "\x{C7FB}";
echo $char;  // Output: 쟻

Ruby:

char = "\u{C7FB}"
puts char  # Output: 쟻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51195;</p>  <!-- Display: 쟻 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7FB;</p>  <!-- Display: 쟻 -->

URL Encoding:

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

Encodings

MD5:

ab73bd1d9347231981d324cbe5776688

SHA1:

3888d3e274e8bc0c708a29cd7c1798d31c768ff7

Base64:

7J+7