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