C:
char c = '\u6D8A';
printf("%c\n", c); // Output: 涊
JavaScript:
const char = '\u6D8A';
console.log(char); // Output: 涊
Java:
char c = '\u6D8A';
System.out.println(c); // Output: 涊
JSON:
{"text": "\u6D8A"} // Value: 涊
Python:
char = '\u6D8A'
print(char) # Output: 涊
Perl:
my $char = "\x{6D8A}";
print $char; # Output: 涊
PHP:
$char = "\x{6D8A}";
echo $char; // Output: 涊
Ruby:
char = "\u{6D8A}"
puts char # Output: 涊
Rust:
let c = '\u{6D8A}';
println!("{}", c); // Output: 涊
Go:
char := '\u6D8A'
fmt.Printf("%c\n", char) // Output: 涊
CSS:
/* CSS content property */
.element::before {
content: "\006D8A"; /* 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=%E6%B6%8A
MD5:
bf9ed83216fee9596d3ebc8b6e48e780
SHA1:
0ef1a934e04bbd73524f62d444719769aa18ac59
Base64:
5raK