Unicode Finder

"웡" U+C6E1(HANGUL SYLLABLE WEONG)

U+C6E1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WEONG

Programming

C
\uC6E1
JavaScript
\uC6E1
Java
\uC6E1
Json
\uC6E1
Python
\uC6E1
Perl
\x{C6E1}
PHP
\x{C6E1}
Ruby
\u{C6E1}
Rust
\u{C6E1}
Go
\uC6E1

Web

CSS
\00C6E1
HtmlDecimal
웡
HtmlHexadecimal
웡
Url
%EC%9B%A1

Code

MD5
21e142624306afe67e125594e06ba7a0
Sha1
6c2b229f8ffed397793de6721a819ecd588762fe
Base64
7Juh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC6E1';
console.log(char);  // Output: 웡

Java:

char c = '\uC6E1';
System.out.println(c);  // Output: 웡

JSON:

{"text": "\uC6E1"}  // Value: 웡

Python:

char = '\uC6E1'
print(char)  # Output: 웡

Perl:

my $char = "\x{C6E1}";
print $char;  # Output: 웡

PHP:

$char = "\x{C6E1}";
echo $char;  // Output: 웡

Ruby:

char = "\u{C6E1}"
puts char  # Output: 웡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50913;</p>  <!-- Display: 웡 -->

HTML Hexadecimal:

<p>HTML hex: &#xC6E1;</p>  <!-- Display: 웡 -->

URL Encoding:

// 웡 URL encoding
https://unicodefinder.com/search.php?query=%EC%9B%A1

Encodings

MD5:

21e142624306afe67e125594e06ba7a0

SHA1:

6c2b229f8ffed397793de6721a819ecd588762fe

Base64:

7Juh