C:
char c = '\uCE1B';
printf("%c\n", c); // Output: 츛
JavaScript:
const char = '\uCE1B';
console.log(char); // Output: 츛
Java:
char c = '\uCE1B';
System.out.println(c); // Output: 츛
JSON:
{"text": "\uCE1B"} // Value: 츛
Python:
char = '\uCE1B'
print(char) # Output: 츛
Perl:
my $char = "\x{CE1B}";
print $char; # Output: 츛
PHP:
$char = "\x{CE1B}";
echo $char; // Output: 츛
Ruby:
char = "\u{CE1B}"
puts char # Output: 츛
Rust:
let c = '\u{CE1B}';
println!("{}", c); // Output: 츛
Go:
char := '\uCE1B'
fmt.Printf("%c\n", char) // Output: 츛
CSS:
/* CSS content property */
.element::before {
content: "\00CE1B"; /* 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%9B
MD5:
5d661336d24c153cc2dc8463f21077b6
SHA1:
0be8c46fc00b8459cf7c1cc5c91ba57f035ab659
Base64:
7Lib