Unicode Finder

"왨" U+C668(HANGUL SYLLABLE WAELS)

U+C668
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WAELS

Programming

C
\uC668
JavaScript
\uC668
Java
\uC668
Json
\uC668
Python
\uC668
Perl
\x{C668}
PHP
\x{C668}
Ruby
\u{C668}
Rust
\u{C668}
Go
\uC668

Web

CSS
\00C668
HtmlDecimal
왨
HtmlHexadecimal
왨
Url
%EC%99%A8

Code

MD5
4cd0c540d1ff7342f6214cc2e90d9fa6
Sha1
90571075912bbd388bda588230001a12fcb95d15
Base64
7Jmo

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC668';
console.log(char);  // Output: 왨

Java:

char c = '\uC668';
System.out.println(c);  // Output: 왨

JSON:

{"text": "\uC668"}  // Value: 왨

Python:

char = '\uC668'
print(char)  # Output: 왨

Perl:

my $char = "\x{C668}";
print $char;  # Output: 왨

PHP:

$char = "\x{C668}";
echo $char;  // Output: 왨

Ruby:

char = "\u{C668}"
puts char  # Output: 왨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50792;</p>  <!-- Display: 왨 -->

HTML Hexadecimal:

<p>HTML hex: &#xC668;</p>  <!-- Display: 왨 -->

URL Encoding:

// 왨 URL encoding
https://unicodefinder.com/search.php?query=%EC%99%A8

Encodings

MD5:

4cd0c540d1ff7342f6214cc2e90d9fa6

SHA1:

90571075912bbd388bda588230001a12fcb95d15

Base64:

7Jmo