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