C:
char c = '\u826A';
printf("%c\n", c); // Output: 艪
JavaScript:
const char = '\u826A';
console.log(char); // Output: 艪
Java:
char c = '\u826A';
System.out.println(c); // Output: 艪
JSON:
{"text": "\u826A"} // Value: 艪
Python:
char = '\u826A'
print(char) # Output: 艪
Perl:
my $char = "\x{826A}";
print $char; # Output: 艪
PHP:
$char = "\x{826A}";
echo $char; // Output: 艪
Ruby:
char = "\u{826A}"
puts char # Output: 艪
Rust:
let c = '\u{826A}';
println!("{}", c); // Output: 艪
Go:
char := '\u826A'
fmt.Printf("%c\n", char) // Output: 艪
CSS:
/* CSS content property */
.element::before {
content: "\00826A"; /* 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%AA
MD5:
3c112af77573566780c952c86a96a1e2
SHA1:
f630a8f0e1f4f3867fd58955a58722dd8d035e6e
Base64:
6Imq