Unicode Finder

"욭" U+C6AD(HANGUL SYLLABLE YOT)

U+C6AD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YOT

Programming

C
\uC6AD
JavaScript
\uC6AD
Java
\uC6AD
Json
\uC6AD
Python
\uC6AD
Perl
\x{C6AD}
PHP
\x{C6AD}
Ruby
\u{C6AD}
Rust
\u{C6AD}
Go
\uC6AD

Web

CSS
\00C6AD
HtmlDecimal
욭
HtmlHexadecimal
욭
Url
%EC%9A%AD

Code

MD5
d7cc25492548cf1fe250bd5e00ad8f3e
Sha1
80d3d153fa1d44e42f2f77f5fa71e08c0dc39852
Base64
7Jqt

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC6AD';
console.log(char);  // Output: 욭

Java:

char c = '\uC6AD';
System.out.println(c);  // Output: 욭

JSON:

{"text": "\uC6AD"}  // Value: 욭

Python:

char = '\uC6AD'
print(char)  # Output: 욭

Perl:

my $char = "\x{C6AD}";
print $char;  # Output: 욭

PHP:

$char = "\x{C6AD}";
echo $char;  // Output: 욭

Ruby:

char = "\u{C6AD}"
puts char  # Output: 욭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50861;</p>  <!-- Display: 욭 -->

HTML Hexadecimal:

<p>HTML hex: &#xC6AD;</p>  <!-- Display: 욭 -->

URL Encoding:

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

Encodings

MD5:

d7cc25492548cf1fe250bd5e00ad8f3e

SHA1:

80d3d153fa1d44e42f2f77f5fa71e08c0dc39852

Base64:

7Jqt