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