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