C:
char c = '\uD44A';
printf("%c\n", c); // Output: 푊
JavaScript:
const char = '\uD44A';
console.log(char); // Output: 푊
Java:
char c = '\uD44A';
System.out.println(c); // Output: 푊
JSON:
{"text": "\uD44A"} // Value: 푊
Python:
char = '\uD44A'
print(char) # Output: 푊
Perl:
my $char = "\x{D44A}";
print $char; # Output: 푊
PHP:
$char = "\x{D44A}";
echo $char; // Output: 푊
Ruby:
char = "\u{D44A}"
puts char # Output: 푊
Rust:
let c = '\u{D44A}';
println!("{}", c); // Output: 푊
Go:
char := '\uD44A'
fmt.Printf("%c\n", char) // Output: 푊
CSS:
/* CSS content property */
.element::before {
content: "\00D44A"; /* 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%91%8A
MD5:
e14fe6c0aa7a020f804c4ffd3764efd1
SHA1:
75932abdcd880feb715dc9ab244f26136b4c5c66
Base64:
7ZGK