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