C:
char c = '\uD2A7';
printf("%c\n", c); // Output: 튧
JavaScript:
const char = '\uD2A7';
console.log(char); // Output: 튧
Java:
char c = '\uD2A7';
System.out.println(c); // Output: 튧
JSON:
{"text": "\uD2A7"} // Value: 튧
Python:
char = '\uD2A7'
print(char) # Output: 튧
Perl:
my $char = "\x{D2A7}";
print $char; # Output: 튧
PHP:
$char = "\x{D2A7}";
echo $char; // Output: 튧
Ruby:
char = "\u{D2A7}"
puts char # Output: 튧
Rust:
let c = '\u{D2A7}';
println!("{}", c); // Output: 튧
Go:
char := '\uD2A7'
fmt.Printf("%c\n", char) // Output: 튧
CSS:
/* CSS content property */
.element::before {
content: "\00D2A7"; /* 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%A7
MD5:
b5a7ecef3714eaab7d929db918df6a6e
SHA1:
9292baf10d01774e548666d9679270aedcc477a0
Base64:
7Yqn