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