C:
char c = '\uCE88';
printf("%c\n", c); // Output: 캈
JavaScript:
const char = '\uCE88';
console.log(char); // Output: 캈
Java:
char c = '\uCE88';
System.out.println(c); // Output: 캈
JSON:
{"text": "\uCE88"} // Value: 캈
Python:
char = '\uCE88'
print(char) # Output: 캈
Perl:
my $char = "\x{CE88}";
print $char; # Output: 캈
PHP:
$char = "\x{CE88}";
echo $char; // Output: 캈
Ruby:
char = "\u{CE88}"
puts char # Output: 캈
Rust:
let c = '\u{CE88}';
println!("{}", c); // Output: 캈
Go:
char := '\uCE88'
fmt.Printf("%c\n", char) // Output: 캈
CSS:
/* CSS content property */
.element::before {
content: "\00CE88"; /* 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%88
MD5:
62adef0433b6665768d2bb846572a260
SHA1:
7758fcd3d10b367f64cc83d0f7d874fd42b5ab96
Base64:
7LqI