Unicode Finder

"왫" U+C66B(HANGUL SYLLABLE WAELH)

U+C66B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WAELH

Programming

C
\uC66B
JavaScript
\uC66B
Java
\uC66B
Json
\uC66B
Python
\uC66B
Perl
\x{C66B}
PHP
\x{C66B}
Ruby
\u{C66B}
Rust
\u{C66B}
Go
\uC66B

Web

CSS
\00C66B
HtmlDecimal
왫
HtmlHexadecimal
왫
Url
%EC%99%AB

Code

MD5
8452f1dcd1b3433b350ea3790f0a5b74
Sha1
7b5293821db25bf5ee941590994c7f55a87201c2
Base64
7Jmr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC66B';
console.log(char);  // Output: 왫

Java:

char c = '\uC66B';
System.out.println(c);  // Output: 왫

JSON:

{"text": "\uC66B"}  // Value: 왫

Python:

char = '\uC66B'
print(char)  # Output: 왫

Perl:

my $char = "\x{C66B}";
print $char;  # Output: 왫

PHP:

$char = "\x{C66B}";
echo $char;  // Output: 왫

Ruby:

char = "\u{C66B}"
puts char  # Output: 왫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50795;</p>  <!-- Display: 왫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC66B;</p>  <!-- Display: 왫 -->

URL Encoding:

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

Encodings

MD5:

8452f1dcd1b3433b350ea3790f0a5b74

SHA1:

7b5293821db25bf5ee941590994c7f55a87201c2

Base64:

7Jmr