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