C:
char c = '\uD15E';
printf("%c\n", c); // Output: 텞
JavaScript:
const char = '\uD15E';
console.log(char); // Output: 텞
Java:
char c = '\uD15E';
System.out.println(c); // Output: 텞
JSON:
{"text": "\uD15E"} // Value: 텞
Python:
char = '\uD15E'
print(char) # Output: 텞
Perl:
my $char = "\x{D15E}";
print $char; # Output: 텞
PHP:
$char = "\x{D15E}";
echo $char; // Output: 텞
Ruby:
char = "\u{D15E}"
puts char # Output: 텞
Rust:
let c = '\u{D15E}';
println!("{}", c); // Output: 텞
Go:
char := '\uD15E'
fmt.Printf("%c\n", char) // Output: 텞
CSS:
/* CSS content property */
.element::before {
content: "\00D15E"; /* 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%85%9E
MD5:
b8f10cd720a2b114bb12bb694254c4a6
SHA1:
d60afe577f85f5a234fe92c01266e12ae7a7b644
Base64:
7YWe