C:
char c = '\uD24F';
printf("%c\n", c); // Output: 퉏
JavaScript:
const char = '\uD24F';
console.log(char); // Output: 퉏
Java:
char c = '\uD24F';
System.out.println(c); // Output: 퉏
JSON:
{"text": "\uD24F"} // Value: 퉏
Python:
char = '\uD24F'
print(char) # Output: 퉏
Perl:
my $char = "\x{D24F}";
print $char; # Output: 퉏
PHP:
$char = "\x{D24F}";
echo $char; // Output: 퉏
Ruby:
char = "\u{D24F}"
puts char # Output: 퉏
Rust:
let c = '\u{D24F}';
println!("{}", c); // Output: 퉏
Go:
char := '\uD24F'
fmt.Printf("%c\n", char) // Output: 퉏
CSS:
/* CSS content property */
.element::before {
content: "\00D24F"; /* 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%89%8F
MD5:
87a49c0faa236def200100c038fe121d
SHA1:
e8d262a314c57234cb5814bf6a89d3edf7908f4e
Base64:
7YmP