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