Unicode Finder

"쟹" U+C7F9(HANGUL SYLLABLE JYAENG)

U+C7F9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYAENG

Programming

C
\uC7F9
JavaScript
\uC7F9
Java
\uC7F9
Json
\uC7F9
Python
\uC7F9
Perl
\x{C7F9}
PHP
\x{C7F9}
Ruby
\u{C7F9}
Rust
\u{C7F9}
Go
\uC7F9

Web

CSS
\00C7F9
HtmlDecimal
쟹
HtmlHexadecimal
쟹
Url
%EC%9F%B9

Code

MD5
1daa5c66aced6976a23fbd3f2f35ad7d
Sha1
35e2cd1949c6a69d583ba081f8389d6788ab5134
Base64
7J+5

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7F9';
console.log(char);  // Output: 쟹

Java:

char c = '\uC7F9';
System.out.println(c);  // Output: 쟹

JSON:

{"text": "\uC7F9"}  // Value: 쟹

Python:

char = '\uC7F9'
print(char)  # Output: 쟹

Perl:

my $char = "\x{C7F9}";
print $char;  # Output: 쟹

PHP:

$char = "\x{C7F9}";
echo $char;  // Output: 쟹

Ruby:

char = "\u{C7F9}"
puts char  # Output: 쟹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51193;</p>  <!-- Display: 쟹 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7F9;</p>  <!-- Display: 쟹 -->

URL Encoding:

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

Encodings

MD5:

1daa5c66aced6976a23fbd3f2f35ad7d

SHA1:

35e2cd1949c6a69d583ba081f8389d6788ab5134

Base64:

7J+5