Unicode Finder

"쟮" U+C7EE(HANGUL SYLLABLE JYAELM)

U+C7EE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE JYAELM

Programming

C
\uC7EE
JavaScript
\uC7EE
Java
\uC7EE
Json
\uC7EE
Python
\uC7EE
Perl
\x{C7EE}
PHP
\x{C7EE}
Ruby
\u{C7EE}
Rust
\u{C7EE}
Go
\uC7EE

Web

CSS
\00C7EE
HtmlDecimal
쟮
HtmlHexadecimal
쟮
Url
%EC%9F%AE

Code

MD5
db9ac8e976929db18cbe71de4efc6908
Sha1
c9db20fef6d07cf4cf9d79215cc8c2685f59be6d
Base64
7J+u

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC7EE';
console.log(char);  // Output: 쟮

Java:

char c = '\uC7EE';
System.out.println(c);  // Output: 쟮

JSON:

{"text": "\uC7EE"}  // Value: 쟮

Python:

char = '\uC7EE'
print(char)  # Output: 쟮

Perl:

my $char = "\x{C7EE}";
print $char;  # Output: 쟮

PHP:

$char = "\x{C7EE}";
echo $char;  // Output: 쟮

Ruby:

char = "\u{C7EE}"
puts char  # Output: 쟮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#51182;</p>  <!-- Display: 쟮 -->

HTML Hexadecimal:

<p>HTML hex: &#xC7EE;</p>  <!-- Display: 쟮 -->

URL Encoding:

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

Encodings

MD5:

db9ac8e976929db18cbe71de4efc6908

SHA1:

c9db20fef6d07cf4cf9d79215cc8c2685f59be6d

Base64:

7J+u