C:
char c = '\u4F70';
printf("%c\n", c); // Output: 佰
JavaScript:
const char = '\u4F70';
console.log(char); // Output: 佰
Java:
char c = '\u4F70';
System.out.println(c); // Output: 佰
JSON:
{"text": "\u4F70"} // Value: 佰
Python:
char = '\u4F70'
print(char) # Output: 佰
Perl:
my $char = "\x{4F70}";
print $char; # Output: 佰
PHP:
$char = "\x{4F70}";
echo $char; // Output: 佰
Ruby:
char = "\u{4F70}"
puts char # Output: 佰
Rust:
let c = '\u{4F70}';
println!("{}", c); // Output: 佰
Go:
char := '\u4F70'
fmt.Printf("%c\n", char) // Output: 佰
CSS:
/* CSS content property */
.element::before {
content: "\004F70"; /* 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%BD%B0
MD5:
8b6bde9a819e306f091dbe4f9c6cff91
SHA1:
51252b4197c9af2c684d6bfa8c34227bf4d4bd46
Base64:
5L2w