C:
char c = '\uD2D0';
printf("%c\n", c); // Output: 틐
JavaScript:
const char = '\uD2D0';
console.log(char); // Output: 틐
Java:
char c = '\uD2D0';
System.out.println(c); // Output: 틐
JSON:
{"text": "\uD2D0"} // Value: 틐
Python:
char = '\uD2D0'
print(char) # Output: 틐
Perl:
my $char = "\x{D2D0}";
print $char; # Output: 틐
PHP:
$char = "\x{D2D0}";
echo $char; // Output: 틐
Ruby:
char = "\u{D2D0}"
puts char # Output: 틐
Rust:
let c = '\u{D2D0}';
println!("{}", c); // Output: 틐
Go:
char := '\uD2D0'
fmt.Printf("%c\n", char) // Output: 틐
CSS:
/* CSS content property */
.element::before {
content: "\00D2D0"; /* 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%8B%90
MD5:
8eee5af1b9bdc4a78ad475d9b44e2ef8
SHA1:
5602a02dd0b8a1091812e67dfe592a344c1cb4f7
Base64:
7YuQ