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