C:
char c = '\u8200';
printf("%c\n", c); // Output: 舀
JavaScript:
const char = '\u8200';
console.log(char); // Output: 舀
Java:
char c = '\u8200';
System.out.println(c); // Output: 舀
JSON:
{"text": "\u8200"} // Value: 舀
Python:
char = '\u8200'
print(char) # Output: 舀
Perl:
my $char = "\x{8200}";
print $char; # Output: 舀
PHP:
$char = "\x{8200}";
echo $char; // Output: 舀
Ruby:
char = "\u{8200}"
puts char # Output: 舀
Rust:
let c = '\u{8200}';
println!("{}", c); // Output: 舀
Go:
char := '\u8200'
fmt.Printf("%c\n", char) // Output: 舀
CSS:
/* CSS content property */
.element::before {
content: "\008200"; /* 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%88%80
MD5:
0dc6152c08d160bba2a286a366d38516
SHA1:
0f09b870bdb256934eab5842e106bb801a5fd580
Base64:
6IiA