C:
char c = '\uD713';
printf("%c\n", c); // Output: 휓
JavaScript:
const char = '\uD713';
console.log(char); // Output: 휓
Java:
char c = '\uD713';
System.out.println(c); // Output: 휓
JSON:
{"text": "\uD713"} // Value: 휓
Python:
char = '\uD713'
print(char) # Output: 휓
Perl:
my $char = "\x{D713}";
print $char; # Output: 휓
PHP:
$char = "\x{D713}";
echo $char; // Output: 휓
Ruby:
char = "\u{D713}"
puts char # Output: 휓
Rust:
let c = '\u{D713}';
println!("{}", c); // Output: 휓
Go:
char := '\uD713'
fmt.Printf("%c\n", char) // Output: 휓
CSS:
/* CSS content property */
.element::before {
content: "\00D713"; /* 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%93
MD5:
777deeda5bd8f66746c3807b8cd29838
SHA1:
97cb103b2724c95fd7e362aadb79c1ed41eb3d36
Base64:
7ZyT