C:
char c = '\uD4A2';
printf("%c\n", c); // Output: 풢
JavaScript:
const char = '\uD4A2';
console.log(char); // Output: 풢
Java:
char c = '\uD4A2';
System.out.println(c); // Output: 풢
JSON:
{"text": "\uD4A2"} // Value: 풢
Python:
char = '\uD4A2'
print(char) # Output: 풢
Perl:
my $char = "\x{D4A2}";
print $char; # Output: 풢
PHP:
$char = "\x{D4A2}";
echo $char; // Output: 풢
Ruby:
char = "\u{D4A2}"
puts char # Output: 풢
Rust:
let c = '\u{D4A2}';
println!("{}", c); // Output: 풢
Go:
char := '\uD4A2'
fmt.Printf("%c\n", char) // Output: 풢
CSS:
/* CSS content property */
.element::before {
content: "\00D4A2"; /* 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%A2
MD5:
ccbc62970ba9fd20b362dd24023f9deb
SHA1:
474da1134f299e869a0e8573e94d4bf553f9f053
Base64:
7ZKi