C:
char c = '\uD394';
printf("%c\n", c); // Output: 펔
JavaScript:
const char = '\uD394';
console.log(char); // Output: 펔
Java:
char c = '\uD394';
System.out.println(c); // Output: 펔
JSON:
{"text": "\uD394"} // Value: 펔
Python:
char = '\uD394'
print(char) # Output: 펔
Perl:
my $char = "\x{D394}";
print $char; # Output: 펔
PHP:
$char = "\x{D394}";
echo $char; // Output: 펔
Ruby:
char = "\u{D394}"
puts char # Output: 펔
Rust:
let c = '\u{D394}';
println!("{}", c); // Output: 펔
Go:
char := '\uD394'
fmt.Printf("%c\n", char) // Output: 펔
CSS:
/* CSS content property */
.element::before {
content: "\00D394"; /* 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%8E%94
MD5:
072b9b14cba4b5443e2127e73206edde
SHA1:
ac19b3f8403a757611775ffd3576d43c19076d8c
Base64:
7Y6U