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