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