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