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