C:
char c = '\u4F08';
printf("%c\n", c); // Output: 伈
JavaScript:
const char = '\u4F08';
console.log(char); // Output: 伈
Java:
char c = '\u4F08';
System.out.println(c); // Output: 伈
JSON:
{"text": "\u4F08"} // Value: 伈
Python:
char = '\u4F08'
print(char) # Output: 伈
Perl:
my $char = "\x{4F08}";
print $char; # Output: 伈
PHP:
$char = "\x{4F08}";
echo $char; // Output: 伈
Ruby:
char = "\u{4F08}"
puts char # Output: 伈
Rust:
let c = '\u{4F08}';
println!("{}", c); // Output: 伈
Go:
char := '\u4F08'
fmt.Printf("%c\n", char) // Output: 伈
CSS:
/* CSS content property */
.element::before {
content: "\004F08"; /* 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=%E4%BC%88
MD5:
7e04229afc2c59a19dd5e679a489759c
SHA1:
bfe763aa0b9521cb7a519ec72482240a874e4241
Base64:
5LyI