Unicode Finder

"왘" U+C658(HANGUL SYLLABLE WAK)

U+C658
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WAK

Programming

C
\uC658
JavaScript
\uC658
Java
\uC658
Json
\uC658
Python
\uC658
Perl
\x{C658}
PHP
\x{C658}
Ruby
\u{C658}
Rust
\u{C658}
Go
\uC658

Web

CSS
\00C658
HtmlDecimal
왘
HtmlHexadecimal
왘
Url
%EC%99%98

Code

MD5
c97b57d2d4e51f688dd6fd0fd9c915e9
Sha1
fc47c64359f82cbbbfa14c84e9dd64e84681593e
Base64
7JmY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC658';
console.log(char);  // Output: 왘

Java:

char c = '\uC658';
System.out.println(c);  // Output: 왘

JSON:

{"text": "\uC658"}  // Value: 왘

Python:

char = '\uC658'
print(char)  # Output: 왘

Perl:

my $char = "\x{C658}";
print $char;  # Output: 왘

PHP:

$char = "\x{C658}";
echo $char;  // Output: 왘

Ruby:

char = "\u{C658}"
puts char  # Output: 왘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50776;</p>  <!-- Display: 왘 -->

HTML Hexadecimal:

<p>HTML hex: &#xC658;</p>  <!-- Display: 왘 -->

URL Encoding:

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

Encodings

MD5:

c97b57d2d4e51f688dd6fd0fd9c915e9

SHA1:

fc47c64359f82cbbbfa14c84e9dd64e84681593e

Base64:

7JmY