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