C:
char c = '\uD46F';
printf("%c\n", c); // Output: 푯
JavaScript:
const char = '\uD46F';
console.log(char); // Output: 푯
Java:
char c = '\uD46F';
System.out.println(c); // Output: 푯
JSON:
{"text": "\uD46F"} // Value: 푯
Python:
char = '\uD46F'
print(char) # Output: 푯
Perl:
my $char = "\x{D46F}";
print $char; # Output: 푯
PHP:
$char = "\x{D46F}";
echo $char; // Output: 푯
Ruby:
char = "\u{D46F}"
puts char # Output: 푯
Rust:
let c = '\u{D46F}';
println!("{}", c); // Output: 푯
Go:
char := '\uD46F'
fmt.Printf("%c\n", char) // Output: 푯
CSS:
/* CSS content property */
.element::before {
content: "\00D46F"; /* 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%91%AF
MD5:
78a3a508ceff36620c42d1df8ecc59e4
SHA1:
da9a1dc81e52425c3e86719bf2ca9adb9110bce5
Base64:
7ZGv