Unicode Finder

"쟂" U+C7C2(HANGUL SYLLABLE JAEJ)

U+C7C2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JAEJ

Programming

C
\uC7C2
JavaScript
\uC7C2
Java
\uC7C2
Json
\uC7C2
Python
\uC7C2
Perl
\x{C7C2}
PHP
\x{C7C2}
Ruby
\u{C7C2}
Rust
\u{C7C2}
Go
\uC7C2

Web

CSS
\00C7C2
HtmlDecimal
쟂
HtmlHexadecimal
쟂
Url
%EC%9F%82

Code

MD5
66a6f5104e45f8f79236a9e514bf6151
Sha1
f43c3b2c5388801dca55d60ea7e3e95b8f36410b
Base64
7J+C

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7C2';
console.log(char);  // Output: 쟂

Java:

char c = '\uC7C2';
System.out.println(c);  // Output: 쟂

JSON:

{"text": "\uC7C2"}  // Value: 쟂

Python:

char = '\uC7C2'
print(char)  # Output: 쟂

Perl:

my $char = "\x{C7C2}";
print $char;  # Output: 쟂

PHP:

$char = "\x{C7C2}";
echo $char;  // Output: 쟂

Ruby:

char = "\u{C7C2}"
puts char  # Output: 쟂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51138;</p>  <!-- Display: 쟂 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7C2;</p>  <!-- Display: 쟂 -->

URL Encoding:

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

Encodings

MD5:

66a6f5104e45f8f79236a9e514bf6151

SHA1:

f43c3b2c5388801dca55d60ea7e3e95b8f36410b

Base64:

7J+C