C:
char c = '\u5C8E';
printf("%c\n", c); // Output: 岎
JavaScript:
const char = '\u5C8E';
console.log(char); // Output: 岎
Java:
char c = '\u5C8E';
System.out.println(c); // Output: 岎
JSON:
{"text": "\u5C8E"} // Value: 岎
Python:
char = '\u5C8E'
print(char) # Output: 岎
Perl:
my $char = "\x{5C8E}";
print $char; # Output: 岎
PHP:
$char = "\x{5C8E}";
echo $char; // Output: 岎
Ruby:
char = "\u{5C8E}"
puts char # Output: 岎
Rust:
let c = '\u{5C8E}';
println!("{}", c); // Output: 岎
Go:
char := '\u5C8E'
fmt.Printf("%c\n", char) // Output: 岎
CSS:
/* CSS content property */
.element::before {
content: "\005C8E"; /* 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=%E5%B2%8E
MD5:
6f04364ee6971cfb8a28387eab89d4df
SHA1:
5aea302b215dcf9209baaf920d8641750f73c5d6
Base64:
5bKO