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