Unicode Finder

"쟇" U+C7C7(HANGUL SYLLABLE JAEH)

U+C7C7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JAEH

Programming

C
\uC7C7
JavaScript
\uC7C7
Java
\uC7C7
Json
\uC7C7
Python
\uC7C7
Perl
\x{C7C7}
PHP
\x{C7C7}
Ruby
\u{C7C7}
Rust
\u{C7C7}
Go
\uC7C7

Web

CSS
\00C7C7
HtmlDecimal
쟇
HtmlHexadecimal
쟇
Url
%EC%9F%87

Code

MD5
9d94be0993442e55d78954a598c9879a
Sha1
19b2721e7b147e1187f439302bdaf8763269bb71
Base64
7J+H

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7C7';
console.log(char);  // Output: 쟇

Java:

char c = '\uC7C7';
System.out.println(c);  // Output: 쟇

JSON:

{"text": "\uC7C7"}  // Value: 쟇

Python:

char = '\uC7C7'
print(char)  # Output: 쟇

Perl:

my $char = "\x{C7C7}";
print $char;  # Output: 쟇

PHP:

$char = "\x{C7C7}";
echo $char;  // Output: 쟇

Ruby:

char = "\u{C7C7}"
puts char  # Output: 쟇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51143;</p>  <!-- Display: 쟇 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7C7;</p>  <!-- Display: 쟇 -->

URL Encoding:

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

Encodings

MD5:

9d94be0993442e55d78954a598c9879a

SHA1:

19b2721e7b147e1187f439302bdaf8763269bb71

Base64:

7J+H