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