Unicode Finder

"욌" U+C68C(HANGUL SYLLABLE OESS)

U+C68C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE OESS

Programming

C
\uC68C
JavaScript
\uC68C
Java
\uC68C
Json
\uC68C
Python
\uC68C
Perl
\x{C68C}
PHP
\x{C68C}
Ruby
\u{C68C}
Rust
\u{C68C}
Go
\uC68C

Web

CSS
\00C68C
HtmlDecimal
욌
HtmlHexadecimal
욌
Url
%EC%9A%8C

Code

MD5
a81a0393ace175ee2df4401712f91aa5
Sha1
e87fda08219403929526047dabe125db2081d0d1
Base64
7JqM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC68C';
console.log(char);  // Output: 욌

Java:

char c = '\uC68C';
System.out.println(c);  // Output: 욌

JSON:

{"text": "\uC68C"}  // Value: 욌

Python:

char = '\uC68C'
print(char)  # Output: 욌

Perl:

my $char = "\x{C68C}";
print $char;  # Output: 욌

PHP:

$char = "\x{C68C}";
echo $char;  // Output: 욌

Ruby:

char = "\u{C68C}"
puts char  # Output: 욌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50828;</p>  <!-- Display: 욌 -->

HTML Hexadecimal:

<p>HTML hex: &#xC68C;</p>  <!-- Display: 욌 -->

URL Encoding:

// 욌 URL encoding
https://unicodefinder.com/search.php?query=%EC%9A%8C

Encodings

MD5:

a81a0393ace175ee2df4401712f91aa5

SHA1:

e87fda08219403929526047dabe125db2081d0d1

Base64:

7JqM