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