C:
char c = '\u5188';
printf("%c\n", c); // Output: 冈
JavaScript:
const char = '\u5188';
console.log(char); // Output: 冈
Java:
char c = '\u5188';
System.out.println(c); // Output: 冈
JSON:
{"text": "\u5188"} // Value: 冈
Python:
char = '\u5188'
print(char) # Output: 冈
Perl:
my $char = "\x{5188}";
print $char; # Output: 冈
PHP:
$char = "\x{5188}";
echo $char; // Output: 冈
Ruby:
char = "\u{5188}"
puts char # Output: 冈
Rust:
let c = '\u{5188}';
println!("{}", c); // Output: 冈
Go:
char := '\u5188'
fmt.Printf("%c\n", char) // Output: 冈
CSS:
/* CSS content property */
.element::before {
content: "\005188"; /* 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=%E5%86%88
MD5:
11a7d4e206c24ea777549a2f5d8e6651
SHA1:
c009f42425d249c60e85ec47000349c06c11c0c4
Base64:
5YaI