C:
char c = '\uD2F2';
printf("%c\n", c); // Output: 틲
JavaScript:
const char = '\uD2F2';
console.log(char); // Output: 틲
Java:
char c = '\uD2F2';
System.out.println(c); // Output: 틲
JSON:
{"text": "\uD2F2"} // Value: 틲
Python:
char = '\uD2F2'
print(char) # Output: 틲
Perl:
my $char = "\x{D2F2}";
print $char; # Output: 틲
PHP:
$char = "\x{D2F2}";
echo $char; // Output: 틲
Ruby:
char = "\u{D2F2}"
puts char # Output: 틲
Rust:
let c = '\u{D2F2}';
println!("{}", c); // Output: 틲
Go:
char := '\uD2F2'
fmt.Printf("%c\n", char) // Output: 틲
CSS:
/* CSS content property */
.element::before {
content: "\00D2F2"; /* 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%B2
MD5:
366c3c2b33d43b467c4a2c19df3b5442
SHA1:
999a6afafaa1a9477c356d1abe8b73eaa2bcfe80
Base64:
7Yuy