C:
char c = '\uD117';
printf("%c\n", c); // Output: 턗
JavaScript:
const char = '\uD117';
console.log(char); // Output: 턗
Java:
char c = '\uD117';
System.out.println(c); // Output: 턗
JSON:
{"text": "\uD117"} // Value: 턗
Python:
char = '\uD117'
print(char) # Output: 턗
Perl:
my $char = "\x{D117}";
print $char; # Output: 턗
PHP:
$char = "\x{D117}";
echo $char; // Output: 턗
Ruby:
char = "\u{D117}"
puts char # Output: 턗
Rust:
let c = '\u{D117}';
println!("{}", c); // Output: 턗
Go:
char := '\uD117'
fmt.Printf("%c\n", char) // Output: 턗
CSS:
/* CSS content property */
.element::before {
content: "\00D117"; /* 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%84%97
MD5:
6d705db428cb6374fa1d203d04391e60
SHA1:
6872242823d7005645142e5f172e5dd3525f2246
Base64:
7YSX