Unicode Finder

"욡" U+C6A1(HANGUL SYLLABLE YOLT)

U+C6A1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YOLT

Programming

C
\uC6A1
JavaScript
\uC6A1
Java
\uC6A1
Json
\uC6A1
Python
\uC6A1
Perl
\x{C6A1}
PHP
\x{C6A1}
Ruby
\u{C6A1}
Rust
\u{C6A1}
Go
\uC6A1

Web

CSS
\00C6A1
HtmlDecimal
욡
HtmlHexadecimal
욡
Url
%EC%9A%A1

Code

MD5
e7e7c6c49ee76b716cbb2701d3deee10
Sha1
28cb1769b3a289b66e0f6bdf869e180b2a601753
Base64
7Jqh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC6A1';
console.log(char);  // Output: 욡

Java:

char c = '\uC6A1';
System.out.println(c);  // Output: 욡

JSON:

{"text": "\uC6A1"}  // Value: 욡

Python:

char = '\uC6A1'
print(char)  # Output: 욡

Perl:

my $char = "\x{C6A1}";
print $char;  # Output: 욡

PHP:

$char = "\x{C6A1}";
echo $char;  // Output: 욡

Ruby:

char = "\u{C6A1}"
puts char  # Output: 욡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50849;</p>  <!-- Display: 욡 -->

HTML Hexadecimal:

<p>HTML hex: &#xC6A1;</p>  <!-- Display: 욡 -->

URL Encoding:

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

Encodings

MD5:

e7e7c6c49ee76b716cbb2701d3deee10

SHA1:

28cb1769b3a289b66e0f6bdf869e180b2a601753

Base64:

7Jqh