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