C:
char c = '\u7570';
printf("%c\n", c); // Output: 異
JavaScript:
const char = '\u7570';
console.log(char); // Output: 異
Java:
char c = '\u7570';
System.out.println(c); // Output: 異
JSON:
{"text": "\u7570"} // Value: 異
Python:
char = '\u7570'
print(char) # Output: 異
Perl:
my $char = "\x{7570}";
print $char; # Output: 異
PHP:
$char = "\x{7570}";
echo $char; // Output: 異
Ruby:
char = "\u{7570}"
puts char # Output: 異
Rust:
let c = '\u{7570}';
println!("{}", c); // Output: 異
Go:
char := '\u7570'
fmt.Printf("%c\n", char) // Output: 異
CSS:
/* CSS content property */
.element::before {
content: "\007570"; /* 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=%E7%95%B0
MD5:
f33f480bcd24afb3ae00bb554b2a7d4d
SHA1:
fdd0b160f4451b19df329d6bb1a3dcb5fa66a172
Base64:
55Ww