C:
char c = '\uD46C';
printf("%c\n", c); // Output: 푬
JavaScript:
const char = '\uD46C';
console.log(char); // Output: 푬
Java:
char c = '\uD46C';
System.out.println(c); // Output: 푬
JSON:
{"text": "\uD46C"} // Value: 푬
Python:
char = '\uD46C'
print(char) # Output: 푬
Perl:
my $char = "\x{D46C}";
print $char; # Output: 푬
PHP:
$char = "\x{D46C}";
echo $char; // Output: 푬
Ruby:
char = "\u{D46C}"
puts char # Output: 푬
Rust:
let c = '\u{D46C}';
println!("{}", c); // Output: 푬
Go:
char := '\uD46C'
fmt.Printf("%c\n", char) // Output: 푬
CSS:
/* CSS content property */
.element::before {
content: "\00D46C"; /* 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%AC
MD5:
e9655633ae41f642e89e73042cfb491f
SHA1:
0b7008d9568a1de5270de5ee0aefbbe11ae34708
Base64:
7ZGs