C:
char c = '\uD4A9';
printf("%c\n", c); // Output: 풩
JavaScript:
const char = '\uD4A9';
console.log(char); // Output: 풩
Java:
char c = '\uD4A9';
System.out.println(c); // Output: 풩
JSON:
{"text": "\uD4A9"} // Value: 풩
Python:
char = '\uD4A9'
print(char) # Output: 풩
Perl:
my $char = "\x{D4A9}";
print $char; # Output: 풩
PHP:
$char = "\x{D4A9}";
echo $char; // Output: 풩
Ruby:
char = "\u{D4A9}"
puts char # Output: 풩
Rust:
let c = '\u{D4A9}';
println!("{}", c); // Output: 풩
Go:
char := '\uD4A9'
fmt.Printf("%c\n", char) // Output: 풩
CSS:
/* CSS content property */
.element::before {
content: "\00D4A9"; /* 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%92%A9
MD5:
fafdf1eaba3eb92e4d134e72f7975ac6
SHA1:
965b7b8a284fb30e47d84b41b3f2708baee47c76
Base64:
7ZKp