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