Unicode Finder

"얫" U+C5AB(HANGUL SYLLABLE YAES)

U+C5AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YAES

Programming

C
\uC5AB
JavaScript
\uC5AB
Java
\uC5AB
Json
\uC5AB
Python
\uC5AB
Perl
\x{C5AB}
PHP
\x{C5AB}
Ruby
\u{C5AB}
Rust
\u{C5AB}
Go
\uC5AB

Web

CSS
\00C5AB
HtmlDecimal
얫
HtmlHexadecimal
얫
Url
%EC%96%AB

Code

MD5
dd898e86f552253e2b1c4774009ed036
Sha1
c2e10c1cebdbb2303c67500b734800a953e8335a
Base64
7Jar

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC5AB';
console.log(char);  // Output: 얫

Java:

char c = '\uC5AB';
System.out.println(c);  // Output: 얫

JSON:

{"text": "\uC5AB"}  // Value: 얫

Python:

char = '\uC5AB'
print(char)  # Output: 얫

Perl:

my $char = "\x{C5AB}";
print $char;  # Output: 얫

PHP:

$char = "\x{C5AB}";
echo $char;  // Output: 얫

Ruby:

char = "\u{C5AB}"
puts char  # Output: 얫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50603;</p>  <!-- Display: 얫 -->

HTML Hexadecimal:

<p>HTML hex: &#xC5AB;</p>  <!-- Display: 얫 -->

URL Encoding:

// 얫 URL encoding
https://unicodefinder.com/search.php?query=%EC%96%AB

Encodings

MD5:

dd898e86f552253e2b1c4774009ed036

SHA1:

c2e10c1cebdbb2303c67500b734800a953e8335a

Base64:

7Jar