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