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