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