C:
char c = '\u97E0';
printf("%c\n", c); // Output: 韠
JavaScript:
const char = '\u97E0';
console.log(char); // Output: 韠
Java:
char c = '\u97E0';
System.out.println(c); // Output: 韠
JSON:
{"text": "\u97E0"} // Value: 韠
Python:
char = '\u97E0'
print(char) # Output: 韠
Perl:
my $char = "\x{97E0}";
print $char; # Output: 韠
PHP:
$char = "\x{97E0}";
echo $char; // Output: 韠
Ruby:
char = "\u{97E0}"
puts char # Output: 韠
Rust:
let c = '\u{97E0}';
println!("{}", c); // Output: 韠
Go:
char := '\u97E0'
fmt.Printf("%c\n", char) // Output: 韠
CSS:
/* CSS content property */
.element::before {
content: "\0097E0"; /* 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=%E9%9F%A0
MD5:
389acb2a83e18fe721b820364768b213
SHA1:
9394684a102e291f2def64936f6cbd09ef7b219f
Base64:
6Z+g