C:
char c = '\uD292';
printf("%c\n", c); // Output: 튒
JavaScript:
const char = '\uD292';
console.log(char); // Output: 튒
Java:
char c = '\uD292';
System.out.println(c); // Output: 튒
JSON:
{"text": "\uD292"} // Value: 튒
Python:
char = '\uD292'
print(char) # Output: 튒
Perl:
my $char = "\x{D292}";
print $char; # Output: 튒
PHP:
$char = "\x{D292}";
echo $char; // Output: 튒
Ruby:
char = "\u{D292}"
puts char # Output: 튒
Rust:
let c = '\u{D292}';
println!("{}", c); // Output: 튒
Go:
char := '\uD292'
fmt.Printf("%c\n", char) // Output: 튒
CSS:
/* CSS content property */
.element::before {
content: "\00D292"; /* 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%92
MD5:
53c49e5feb03f6f715e24a64f0374d01
SHA1:
136657953cb9d4bb0cb989277480bed25a1ff056
Base64:
7YqS