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