C:
char c = '\u7063';
printf("%c\n", c); // Output: 灣
JavaScript:
const char = '\u7063';
console.log(char); // Output: 灣
Java:
char c = '\u7063';
System.out.println(c); // Output: 灣
JSON:
{"text": "\u7063"} // Value: 灣
Python:
char = '\u7063'
print(char) # Output: 灣
Perl:
my $char = "\x{7063}";
print $char; # Output: 灣
PHP:
$char = "\x{7063}";
echo $char; // Output: 灣
Ruby:
char = "\u{7063}"
puts char # Output: 灣
Rust:
let c = '\u{7063}';
println!("{}", c); // Output: 灣
Go:
char := '\u7063'
fmt.Printf("%c\n", char) // Output: 灣
CSS:
/* CSS content property */
.element::before {
content: "\007063"; /* 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%81%A3
MD5:
f4ac1da6b3712818ec685efc3add9c32
SHA1:
614eff1d45464923045dd505914176dc6bfa7a9c
Base64:
54Gj