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