C:
char c = '\uD620';
printf("%c\n", c); // Output: 혠
JavaScript:
const char = '\uD620';
console.log(char); // Output: 혠
Java:
char c = '\uD620';
System.out.println(c); // Output: 혠
JSON:
{"text": "\uD620"} // Value: 혠
Python:
char = '\uD620'
print(char) # Output: 혠
Perl:
my $char = "\x{D620}";
print $char; # Output: 혠
PHP:
$char = "\x{D620}";
echo $char; // Output: 혠
Ruby:
char = "\u{D620}"
puts char # Output: 혠
Rust:
let c = '\u{D620}';
println!("{}", c); // Output: 혠
Go:
char := '\uD620'
fmt.Printf("%c\n", char) // Output: 혠
CSS:
/* CSS content property */
.element::before {
content: "\00D620"; /* 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%98%A0
MD5:
aa8bd6fb6f2cbb50963976869628450c
SHA1:
29cc3cabd1cd23134e46878aab1833921896272c
Base64:
7Zig