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