C:
char c = '\uD0F2';
printf("%c\n", c); // Output: 탲
JavaScript:
const char = '\uD0F2';
console.log(char); // Output: 탲
Java:
char c = '\uD0F2';
System.out.println(c); // Output: 탲
JSON:
{"text": "\uD0F2"} // Value: 탲
Python:
char = '\uD0F2'
print(char) # Output: 탲
Perl:
my $char = "\x{D0F2}";
print $char; # Output: 탲
PHP:
$char = "\x{D0F2}";
echo $char; // Output: 탲
Ruby:
char = "\u{D0F2}"
puts char # Output: 탲
Rust:
let c = '\u{D0F2}';
println!("{}", c); // Output: 탲
Go:
char := '\uD0F2'
fmt.Printf("%c\n", char) // Output: 탲
CSS:
/* CSS content property */
.element::before {
content: "\00D0F2"; /* 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%B2
MD5:
3bab159663674cf37c8dbcc35b9a5ca9
SHA1:
7790f97808808fad448b471c0b72cf5c343e304e
Base64:
7YOy