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