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