C:
char c = '\u6771';
printf("%c\n", c); // Output: 東
JavaScript:
const char = '\u6771';
console.log(char); // Output: 東
Java:
char c = '\u6771';
System.out.println(c); // Output: 東
JSON:
{"text": "\u6771"} // Value: 東
Python:
char = '\u6771'
print(char) # Output: 東
Perl:
my $char = "\x{6771}";
print $char; # Output: 東
PHP:
$char = "\x{6771}";
echo $char; // Output: 東
Ruby:
char = "\u{6771}"
puts char # Output: 東
Rust:
let c = '\u{6771}';
println!("{}", c); // Output: 東
Go:
char := '\u6771'
fmt.Printf("%c\n", char) // Output: 東
CSS:
/* CSS content property */
.element::before {
content: "\006771"; /* 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%9D%B1
MD5:
dde7b201c3663dbe7ad9db99c2f38186
SHA1:
ebaca4be57c2489eee8fc5fa973f70fe031f9829
Base64:
5p2x