C:
char c = '\u6A2A';
printf("%c\n", c); // Output: 横
JavaScript:
const char = '\u6A2A';
console.log(char); // Output: 横
Java:
char c = '\u6A2A';
System.out.println(c); // Output: 横
JSON:
{"text": "\u6A2A"} // Value: 横
Python:
char = '\u6A2A'
print(char) # Output: 横
Perl:
my $char = "\x{6A2A}";
print $char; # Output: 横
PHP:
$char = "\x{6A2A}";
echo $char; // Output: 横
Ruby:
char = "\u{6A2A}"
puts char # Output: 横
Rust:
let c = '\u{6A2A}';
println!("{}", c); // Output: 横
Go:
char := '\u6A2A'
fmt.Printf("%c\n", char) // Output: 横
CSS:
/* CSS content property */
.element::before {
content: "\006A2A"; /* 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%A8%AA
MD5:
8cac9e056a0fb2a6c8950ac37896f52b
SHA1:
a7d20fd2ebd685e079f0a3f758f29cca07636ca0
Base64:
5qiq