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