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