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