Unicode Finder

"얖" U+C596(HANGUL SYLLABLE YAP)

U+C596
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE YAP

Programming

C
\uC596
JavaScript
\uC596
Java
\uC596
Json
\uC596
Python
\uC596
Perl
\x{C596}
PHP
\x{C596}
Ruby
\u{C596}
Rust
\u{C596}
Go
\uC596

Web

CSS
\00C596
HtmlDecimal
얖
HtmlHexadecimal
얖
Url
%EC%96%96

Code

MD5
d3c9123d39cd3b28b011854c6c586732
Sha1
e2c7f8bfd8789dad5b0e8be6be5a2218038b2f83
Base64
7JaW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC596';
console.log(char);  // Output: 얖

Java:

char c = '\uC596';
System.out.println(c);  // Output: 얖

JSON:

{"text": "\uC596"}  // Value: 얖

Python:

char = '\uC596'
print(char)  # Output: 얖

Perl:

my $char = "\x{C596}";
print $char;  # Output: 얖

PHP:

$char = "\x{C596}";
echo $char;  // Output: 얖

Ruby:

char = "\u{C596}"
puts char  # Output: 얖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#50582;</p>  <!-- Display: 얖 -->

HTML Hexadecimal:

<p>HTML hex: &#xC596;</p>  <!-- Display: 얖 -->

URL Encoding:

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

Encodings

MD5:

d3c9123d39cd3b28b011854c6c586732

SHA1:

e2c7f8bfd8789dad5b0e8be6be5a2218038b2f83

Base64:

7JaW