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