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