Unicode Finder

"왟" U+C65F(HANGUL SYLLABLE WAEGS)

U+C65F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WAEGS

Programming

C
\uC65F
JavaScript
\uC65F
Java
\uC65F
Json
\uC65F
Python
\uC65F
Perl
\x{C65F}
PHP
\x{C65F}
Ruby
\u{C65F}
Rust
\u{C65F}
Go
\uC65F

Web

CSS
\00C65F
HtmlDecimal
왟
HtmlHexadecimal
왟
Url
%EC%99%9F

Code

MD5
692c0dda43019757d688b3293ecc3b34
Sha1
5e0a8c48687f9bd6780a5f4218b90d0132c0e192
Base64
7Jmf

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC65F';
console.log(char);  // Output: 왟

Java:

char c = '\uC65F';
System.out.println(c);  // Output: 왟

JSON:

{"text": "\uC65F"}  // Value: 왟

Python:

char = '\uC65F'
print(char)  # Output: 왟

Perl:

my $char = "\x{C65F}";
print $char;  # Output: 왟

PHP:

$char = "\x{C65F}";
echo $char;  // Output: 왟

Ruby:

char = "\u{C65F}"
puts char  # Output: 왟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50783;</p>  <!-- Display: 왟 -->

HTML Hexadecimal:

<p>HTML hex: &#xC65F;</p>  <!-- Display: 왟 -->

URL Encoding:

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

Encodings

MD5:

692c0dda43019757d688b3293ecc3b34

SHA1:

5e0a8c48687f9bd6780a5f4218b90d0132c0e192

Base64:

7Jmf