C:
char c = '\uD02E';
printf("%c\n", c); // Output: 퀮
JavaScript:
const char = '\uD02E';
console.log(char); // Output: 퀮
Java:
char c = '\uD02E';
System.out.println(c); // Output: 퀮
JSON:
{"text": "\uD02E"} // Value: 퀮
Python:
char = '\uD02E'
print(char) # Output: 퀮
Perl:
my $char = "\x{D02E}";
print $char; # Output: 퀮
PHP:
$char = "\x{D02E}";
echo $char; // Output: 퀮
Ruby:
char = "\u{D02E}"
puts char # Output: 퀮
Rust:
let c = '\u{D02E}';
println!("{}", c); // Output: 퀮
Go:
char := '\uD02E'
fmt.Printf("%c\n", char) // Output: 퀮
CSS:
/* CSS content property */
.element::before {
content: "\00D02E"; /* 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%80%AE
MD5:
a4a1899da7c8469e30c3f7f68e74ace2
SHA1:
82b94e9735172817af980441500a3e5686b47739
Base64:
7YCu