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