Unicode Finder

"웈" U+C6C8(HANGUL SYLLABLE UK)

U+C6C8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE UK

Programming

C
\uC6C8
JavaScript
\uC6C8
Java
\uC6C8
Json
\uC6C8
Python
\uC6C8
Perl
\x{C6C8}
PHP
\x{C6C8}
Ruby
\u{C6C8}
Rust
\u{C6C8}
Go
\uC6C8

Web

CSS
\00C6C8
HtmlDecimal
웈
HtmlHexadecimal
웈
Url
%EC%9B%88

Code

MD5
8685bfa1b2e747406709aa5e500c22d6
Sha1
e08d66ef4d7776198d8d290eca9a1efc4f0b1f05
Base64
7JuI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC6C8';
console.log(char);  // Output: 웈

Java:

char c = '\uC6C8';
System.out.println(c);  // Output: 웈

JSON:

{"text": "\uC6C8"}  // Value: 웈

Python:

char = '\uC6C8'
print(char)  # Output: 웈

Perl:

my $char = "\x{C6C8}";
print $char;  # Output: 웈

PHP:

$char = "\x{C6C8}";
echo $char;  // Output: 웈

Ruby:

char = "\u{C6C8}"
puts char  # Output: 웈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50888;</p>  <!-- Display: 웈 -->

HTML Hexadecimal:

<p>HTML hex: &#xC6C8;</p>  <!-- Display: 웈 -->

URL Encoding:

// 웈 URL encoding
https://unicodefinder.com/search.php?query=%EC%9B%88

Encodings

MD5:

8685bfa1b2e747406709aa5e500c22d6

SHA1:

e08d66ef4d7776198d8d290eca9a1efc4f0b1f05

Base64:

7JuI