C:
char c = '\uD4F3';
printf("%c\n", c); // Output: 퓳
JavaScript:
const char = '\uD4F3';
console.log(char); // Output: 퓳
Java:
char c = '\uD4F3';
System.out.println(c); // Output: 퓳
JSON:
{"text": "\uD4F3"} // Value: 퓳
Python:
char = '\uD4F3'
print(char) # Output: 퓳
Perl:
my $char = "\x{D4F3}";
print $char; # Output: 퓳
PHP:
$char = "\x{D4F3}";
echo $char; // Output: 퓳
Ruby:
char = "\u{D4F3}"
puts char # Output: 퓳
Rust:
let c = '\u{D4F3}';
println!("{}", c); // Output: 퓳
Go:
char := '\uD4F3'
fmt.Printf("%c\n", char) // Output: 퓳
CSS:
/* CSS content property */
.element::before {
content: "\00D4F3"; /* 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%B3
MD5:
523a5144b5cd185aed30b1e2295cd650
SHA1:
1164eebef28938a2e757c42d9be54fc58eb8b1e9
Base64:
7ZOz