C:
char c = '\u826B';
printf("%c\n", c); // Output: 艫
JavaScript:
const char = '\u826B';
console.log(char); // Output: 艫
Java:
char c = '\u826B';
System.out.println(c); // Output: 艫
JSON:
{"text": "\u826B"} // Value: 艫
Python:
char = '\u826B'
print(char) # Output: 艫
Perl:
my $char = "\x{826B}";
print $char; # Output: 艫
PHP:
$char = "\x{826B}";
echo $char; // Output: 艫
Ruby:
char = "\u{826B}"
puts char # Output: 艫
Rust:
let c = '\u{826B}';
println!("{}", c); // Output: 艫
Go:
char := '\u826B'
fmt.Printf("%c\n", char) // Output: 艫
CSS:
/* CSS content property */
.element::before {
content: "\00826B"; /* 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=%E8%89%AB
MD5:
a2aa65fbe39d6fad8e9b0e869479759a
SHA1:
59693ec2e3dbdb58847c2c26a72459c89456dd5e
Base64:
6Imr