C:
char c = '\u8B61';
printf("%c\n", c); // Output: 譡
JavaScript:
const char = '\u8B61';
console.log(char); // Output: 譡
Java:
char c = '\u8B61';
System.out.println(c); // Output: 譡
JSON:
{"text": "\u8B61"} // Value: 譡
Python:
char = '\u8B61'
print(char) # Output: 譡
Perl:
my $char = "\x{8B61}";
print $char; # Output: 譡
PHP:
$char = "\x{8B61}";
echo $char; // Output: 譡
Ruby:
char = "\u{8B61}"
puts char # Output: 譡
Rust:
let c = '\u{8B61}';
println!("{}", c); // Output: 譡
Go:
char := '\u8B61'
fmt.Printf("%c\n", char) // Output: 譡
CSS:
/* CSS content property */
.element::before {
content: "\008B61"; /* 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%AD%A1
MD5:
f15a1aee9202bd74e8d4bbb9600b5ec0
SHA1:
f3932268ced9de7b7d1c2e5e41d19ecff72b93f0
Base64:
6K2h