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