C:
char c = '\uD4EC';
printf("%c\n", c); // Output: 퓬
JavaScript:
const char = '\uD4EC';
console.log(char); // Output: 퓬
Java:
char c = '\uD4EC';
System.out.println(c); // Output: 퓬
JSON:
{"text": "\uD4EC"} // Value: 퓬
Python:
char = '\uD4EC'
print(char) # Output: 퓬
Perl:
my $char = "\x{D4EC}";
print $char; # Output: 퓬
PHP:
$char = "\x{D4EC}";
echo $char; // Output: 퓬
Ruby:
char = "\u{D4EC}"
puts char # Output: 퓬
Rust:
let c = '\u{D4EC}';
println!("{}", c); // Output: 퓬
Go:
char := '\uD4EC'
fmt.Printf("%c\n", char) // Output: 퓬
CSS:
/* CSS content property */
.element::before {
content: "\00D4EC"; /* 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%AC
MD5:
25d629cbfefc5deebafe55fa22cf6044
SHA1:
04385bc086c99a25fd54d005e99c5dba9b63dc8d
Base64:
7ZOs