C:
char c = '\uC7AD';
printf("%c\n", c); // Output: 잭
JavaScript:
const char = '\uC7AD';
console.log(char); // Output: 잭
Java:
char c = '\uC7AD';
System.out.println(c); // Output: 잭
JSON:
{"text": "\uC7AD"} // Value: 잭
Python:
char = '\uC7AD'
print(char) # Output: 잭
Perl:
my $char = "\x{C7AD}";
print $char; # Output: 잭
PHP:
$char = "\x{C7AD}";
echo $char; // Output: 잭
Ruby:
char = "\u{C7AD}"
puts char # Output: 잭
Rust:
let c = '\u{C7AD}';
println!("{}", c); // Output: 잭
Go:
char := '\uC7AD'
fmt.Printf("%c\n", char) // Output: 잭
CSS:
/* CSS content property */
.element::before {
content: "\00C7AD"; /* 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%9E%AD
MD5:
1e542f11a56e40e6b79f0e3332ae260e
SHA1:
3625b134f1b95e513dea767bd015c71d306aac0b
Base64:
7J6t