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