C:
char c = '\u6E08';
printf("%c\n", c); // Output: 済
JavaScript:
const char = '\u6E08';
console.log(char); // Output: 済
Java:
char c = '\u6E08';
System.out.println(c); // Output: 済
JSON:
{"text": "\u6E08"} // Value: 済
Python:
char = '\u6E08'
print(char) # Output: 済
Perl:
my $char = "\x{6E08}";
print $char; # Output: 済
PHP:
$char = "\x{6E08}";
echo $char; // Output: 済
Ruby:
char = "\u{6E08}"
puts char # Output: 済
Rust:
let c = '\u{6E08}';
println!("{}", c); // Output: 済
Go:
char := '\u6E08'
fmt.Printf("%c\n", char) // Output: 済
CSS:
/* CSS content property */
.element::before {
content: "\006E08"; /* 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%B8%88
MD5:
b487786393d2e0a4d332472f7fed947b
SHA1:
333228ec5cc037cb6640efe9fec8498170fcf83f
Base64:
5riI