C:
char c = '\uD5ED';
printf("%c\n", c); // Output: 헭
JavaScript:
const char = '\uD5ED';
console.log(char); // Output: 헭
Java:
char c = '\uD5ED';
System.out.println(c); // Output: 헭
JSON:
{"text": "\uD5ED"} // Value: 헭
Python:
char = '\uD5ED'
print(char) # Output: 헭
Perl:
my $char = "\x{D5ED}";
print $char; # Output: 헭
PHP:
$char = "\x{D5ED}";
echo $char; // Output: 헭
Ruby:
char = "\u{D5ED}"
puts char # Output: 헭
Rust:
let c = '\u{D5ED}';
println!("{}", c); // Output: 헭
Go:
char := '\uD5ED'
fmt.Printf("%c\n", char) // Output: 헭
CSS:
/* CSS content property */
.element::before {
content: "\00D5ED"; /* 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%97%AD
MD5:
3781c8f1224cf3c66eeb1b7a9bd40863
SHA1:
18f7fcc5b3925aed4532cb5af0f55102ebb1751e
Base64:
7Zet