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