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