C:
char c = '\uCEA0';
printf("%c\n", c); // Output: 캠
JavaScript:
const char = '\uCEA0';
console.log(char); // Output: 캠
Java:
char c = '\uCEA0';
System.out.println(c); // Output: 캠
JSON:
{"text": "\uCEA0"} // Value: 캠
Python:
char = '\uCEA0'
print(char) # Output: 캠
Perl:
my $char = "\x{CEA0}";
print $char; # Output: 캠
PHP:
$char = "\x{CEA0}";
echo $char; // Output: 캠
Ruby:
char = "\u{CEA0}"
puts char # Output: 캠
Rust:
let c = '\u{CEA0}';
println!("{}", c); // Output: 캠
Go:
char := '\uCEA0'
fmt.Printf("%c\n", char) // Output: 캠
CSS:
/* CSS content property */
.element::before {
content: "\00CEA0"; /* 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%BA%A0
MD5:
aee7f20341adec08c8dac0157cf6673e
SHA1:
247c52e98d93fa366f1c084b5a4162d366e091e5
Base64:
7Lqg