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