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