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