Unicode Finder

"왋" U+C64B(HANGUL SYLLABLE WALB)

U+C64B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE WALB

Programming

C
\uC64B
JavaScript
\uC64B
Java
\uC64B
Json
\uC64B
Python
\uC64B
Perl
\x{C64B}
PHP
\x{C64B}
Ruby
\u{C64B}
Rust
\u{C64B}
Go
\uC64B

Web

CSS
\00C64B
HtmlDecimal
왋
HtmlHexadecimal
왋
Url
%EC%99%8B

Code

MD5
f30911973ced55eeeb8420d506ad422f
Sha1
ba172fc105d9e46d3c3a9ec7bbb7de95ee2d8f13
Base64
7JmL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC64B';
console.log(char);  // Output: 왋

Java:

char c = '\uC64B';
System.out.println(c);  // Output: 왋

JSON:

{"text": "\uC64B"}  // Value: 왋

Python:

char = '\uC64B'
print(char)  # Output: 왋

Perl:

my $char = "\x{C64B}";
print $char;  # Output: 왋

PHP:

$char = "\x{C64B}";
echo $char;  // Output: 왋

Ruby:

char = "\u{C64B}"
puts char  # Output: 왋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50763;</p>  <!-- Display: 왋 -->

HTML Hexadecimal:

<p>HTML hex: &#xC64B;</p>  <!-- Display: 왋 -->

URL Encoding:

// 왋 URL encoding
https://unicodefinder.com/search.php?query=%EC%99%8B

Encodings

MD5:

f30911973ced55eeeb8420d506ad422f

SHA1:

ba172fc105d9e46d3c3a9ec7bbb7de95ee2d8f13

Base64:

7JmL