C:
char c = '\uD2CD';
printf("%c\n", c); // Output: 틍
JavaScript:
const char = '\uD2CD';
console.log(char); // Output: 틍
Java:
char c = '\uD2CD';
System.out.println(c); // Output: 틍
JSON:
{"text": "\uD2CD"} // Value: 틍
Python:
char = '\uD2CD'
print(char) # Output: 틍
Perl:
my $char = "\x{D2CD}";
print $char; # Output: 틍
PHP:
$char = "\x{D2CD}";
echo $char; // Output: 틍
Ruby:
char = "\u{D2CD}"
puts char # Output: 틍
Rust:
let c = '\u{D2CD}';
println!("{}", c); // Output: 틍
Go:
char := '\uD2CD'
fmt.Printf("%c\n", char) // Output: 틍
CSS:
/* CSS content property */
.element::before {
content: "\00D2CD"; /* 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%8D
MD5:
3bc647b097137a1bbf1f3d514a9ce6c1
SHA1:
85910be323acb59663f467aed76cc9a04dcf127c
Base64:
7YuN