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