Unicode Finder

"욞" U+C69E(HANGUL SYLLABLE YOLM)

U+C69E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YOLM

Programming

C
\uC69E
JavaScript
\uC69E
Java
\uC69E
Json
\uC69E
Python
\uC69E
Perl
\x{C69E}
PHP
\x{C69E}
Ruby
\u{C69E}
Rust
\u{C69E}
Go
\uC69E

Web

CSS
\00C69E
HtmlDecimal
욞
HtmlHexadecimal
욞
Url
%EC%9A%9E

Code

MD5
cf53c3773e72d70110e787fc71fe9e42
Sha1
4c3f41f34a0754276da70e5363b31f545fb68f5e
Base64
7Jqe

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC69E';
console.log(char);  // Output: 욞

Java:

char c = '\uC69E';
System.out.println(c);  // Output: 욞

JSON:

{"text": "\uC69E"}  // Value: 욞

Python:

char = '\uC69E'
print(char)  # Output: 욞

Perl:

my $char = "\x{C69E}";
print $char;  # Output: 욞

PHP:

$char = "\x{C69E}";
echo $char;  // Output: 욞

Ruby:

char = "\u{C69E}"
puts char  # Output: 욞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50846;</p>  <!-- Display: 욞 -->

HTML Hexadecimal:

<p>HTML hex: &#xC69E;</p>  <!-- Display: 욞 -->

URL Encoding:

// 욞 URL encoding
https://unicodefinder.com/search.php?query=%EC%9A%9E

Encodings

MD5:

cf53c3773e72d70110e787fc71fe9e42

SHA1:

4c3f41f34a0754276da70e5363b31f545fb68f5e

Base64:

7Jqe