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