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