C:
char c = '\uD372';
printf("%c\n", c); // Output: 퍲
JavaScript:
const char = '\uD372';
console.log(char); // Output: 퍲
Java:
char c = '\uD372';
System.out.println(c); // Output: 퍲
JSON:
{"text": "\uD372"} // Value: 퍲
Python:
char = '\uD372'
print(char) # Output: 퍲
Perl:
my $char = "\x{D372}";
print $char; # Output: 퍲
PHP:
$char = "\x{D372}";
echo $char; // Output: 퍲
Ruby:
char = "\u{D372}"
puts char # Output: 퍲
Rust:
let c = '\u{D372}';
println!("{}", c); // Output: 퍲
Go:
char := '\uD372'
fmt.Printf("%c\n", char) // Output: 퍲
CSS:
/* CSS content property */
.element::before {
content: "\00D372"; /* 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%B2
MD5:
805f197154cfc1f71958d1a21918bcff
SHA1:
6b910cdde87accc7002437d4cb7c7cc50100cc78
Base64:
7Y2y