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