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