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