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