C:
char c = '\u6069';
printf("%c\n", c); // Output: 恩
JavaScript:
const char = '\u6069';
console.log(char); // Output: 恩
Java:
char c = '\u6069';
System.out.println(c); // Output: 恩
JSON:
{"text": "\u6069"} // Value: 恩
Python:
char = '\u6069'
print(char) # Output: 恩
Perl:
my $char = "\x{6069}";
print $char; # Output: 恩
PHP:
$char = "\x{6069}";
echo $char; // Output: 恩
Ruby:
char = "\u{6069}"
puts char # Output: 恩
Rust:
let c = '\u{6069}';
println!("{}", c); // Output: 恩
Go:
char := '\u6069'
fmt.Printf("%c\n", char) // Output: 恩
CSS:
/* CSS content property */
.element::before {
content: "\006069"; /* 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=%E6%81%A9
MD5:
638dc40c452652fbcf2a9739ed81b631
SHA1:
a8af3622dbc1e3f47ca2bafb41789866bfa9c26c
Base64:
5oGp