C:
char c = '\uCA12';
printf("%c\n", c); // Output: 쨒
JavaScript:
const char = '\uCA12';
console.log(char); // Output: 쨒
Java:
char c = '\uCA12';
System.out.println(c); // Output: 쨒
JSON:
{"text": "\uCA12"} // Value: 쨒
Python:
char = '\uCA12'
print(char) # Output: 쨒
Perl:
my $char = "\x{CA12}";
print $char; # Output: 쨒
PHP:
$char = "\x{CA12}";
echo $char; // Output: 쨒
Ruby:
char = "\u{CA12}"
puts char # Output: 쨒
Rust:
let c = '\u{CA12}';
println!("{}", c); // Output: 쨒
Go:
char := '\uCA12'
fmt.Printf("%c\n", char) // Output: 쨒
CSS:
/* CSS content property */
.element::before {
content: "\00CA12"; /* 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%A8%92
MD5:
c7846dd0cfc43f77f4c75580aed77b4d
SHA1:
d43727f39fab6d6f9efc9b860add4e0fc246e5ce
Base64:
7KiS