Unicode Finder

"쟼" U+C7FC(HANGUL SYLLABLE JYAEK)

U+C7FC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYAEK

Programming

C
\uC7FC
JavaScript
\uC7FC
Java
\uC7FC
Json
\uC7FC
Python
\uC7FC
Perl
\x{C7FC}
PHP
\x{C7FC}
Ruby
\u{C7FC}
Rust
\u{C7FC}
Go
\uC7FC

Web

CSS
\00C7FC
HtmlDecimal
쟼
HtmlHexadecimal
쟼
Url
%EC%9F%BC

Code

MD5
6225afcdb0f40245418a89f5d0b6a6a7
Sha1
269dec8451c6fb7c65b2969ec90202e9581f853c
Base64
7J+8

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7FC';
console.log(char);  // Output: 쟼

Java:

char c = '\uC7FC';
System.out.println(c);  // Output: 쟼

JSON:

{"text": "\uC7FC"}  // Value: 쟼

Python:

char = '\uC7FC'
print(char)  # Output: 쟼

Perl:

my $char = "\x{C7FC}";
print $char;  # Output: 쟼

PHP:

$char = "\x{C7FC}";
echo $char;  // Output: 쟼

Ruby:

char = "\u{C7FC}"
puts char  # Output: 쟼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51196;</p>  <!-- Display: 쟼 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7FC;</p>  <!-- Display: 쟼 -->

URL Encoding:

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

Encodings

MD5:

6225afcdb0f40245418a89f5d0b6a6a7

SHA1:

269dec8451c6fb7c65b2969ec90202e9581f853c

Base64:

7J+8