C:
char c = '\uD371';
printf("%c\n", c); // Output: 퍱
JavaScript:
const char = '\uD371';
console.log(char); // Output: 퍱
Java:
char c = '\uD371';
System.out.println(c); // Output: 퍱
JSON:
{"text": "\uD371"} // Value: 퍱
Python:
char = '\uD371'
print(char) # Output: 퍱
Perl:
my $char = "\x{D371}";
print $char; # Output: 퍱
PHP:
$char = "\x{D371}";
echo $char; // Output: 퍱
Ruby:
char = "\u{D371}"
puts char # Output: 퍱
Rust:
let c = '\u{D371}';
println!("{}", c); // Output: 퍱
Go:
char := '\uD371'
fmt.Printf("%c\n", char) // Output: 퍱
CSS:
/* CSS content property */
.element::before {
content: "\00D371"; /* 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%B1
MD5:
48e5d10b0f81f4565d15d1782ca0b50d
SHA1:
97f26006d5037da7ed76598df3792080c58d9caf
Base64:
7Y2x