C:
char c = '\uD1F3';
printf("%c\n", c); // Output: 퇳
JavaScript:
const char = '\uD1F3';
console.log(char); // Output: 퇳
Java:
char c = '\uD1F3';
System.out.println(c); // Output: 퇳
JSON:
{"text": "\uD1F3"} // Value: 퇳
Python:
char = '\uD1F3'
print(char) # Output: 퇳
Perl:
my $char = "\x{D1F3}";
print $char; # Output: 퇳
PHP:
$char = "\x{D1F3}";
echo $char; // Output: 퇳
Ruby:
char = "\u{D1F3}"
puts char # Output: 퇳
Rust:
let c = '\u{D1F3}';
println!("{}", c); // Output: 퇳
Go:
char := '\uD1F3'
fmt.Printf("%c\n", char) // Output: 퇳
CSS:
/* CSS content property */
.element::before {
content: "\00D1F3"; /* 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%87%B3
MD5:
65d2c5deeba79d2fc1bb40dd49430322
SHA1:
24ebf9ead06445b8ef466ac81c6ffc80701c041a
Base64:
7Yez