C:
char c = '\uC0AC';
printf("%c\n", c); // Output: 사
JavaScript:
const char = '\uC0AC';
console.log(char); // Output: 사
Java:
char c = '\uC0AC';
System.out.println(c); // Output: 사
JSON:
{"text": "\uC0AC"} // Value: 사
Python:
char = '\uC0AC'
print(char) # Output: 사
Perl:
my $char = "\x{C0AC}";
print $char; # Output: 사
PHP:
$char = "\x{C0AC}";
echo $char; // Output: 사
Ruby:
char = "\u{C0AC}"
puts char # Output: 사
Rust:
let c = '\u{C0AC}';
println!("{}", c); // Output: 사
Go:
char := '\uC0AC'
fmt.Printf("%c\n", char) // Output: 사
CSS:
/* CSS content property */
.element::before {
content: "\00C0AC"; /* Display: 사 */
}
HTML Decimal:
<p>HTML decimal: 사</p> <!-- Display: 사 -->
HTML Hexadecimal:
<p>HTML hex: 사</p> <!-- Display: 사 -->
URL Encoding:
// 사 URL encoding
https://unicodefinder.com/search.php?query=%EC%82%AC
MD5:
03622984130d7d081e2467fedba901d7
SHA1:
ec488add9d1dbf8dc586af2e58e0ac0557d0bf32
Base64:
7IKs