C:
char c = '\u5130';
printf("%c\n", c); // Output: 儰
JavaScript:
const char = '\u5130';
console.log(char); // Output: 儰
Java:
char c = '\u5130';
System.out.println(c); // Output: 儰
JSON:
{"text": "\u5130"} // Value: 儰
Python:
char = '\u5130'
print(char) # Output: 儰
Perl:
my $char = "\x{5130}";
print $char; # Output: 儰
PHP:
$char = "\x{5130}";
echo $char; // Output: 儰
Ruby:
char = "\u{5130}"
puts char # Output: 儰
Rust:
let c = '\u{5130}';
println!("{}", c); // Output: 儰
Go:
char := '\u5130'
fmt.Printf("%c\n", char) // Output: 儰
CSS:
/* CSS content property */
.element::before {
content: "\005130"; /* 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%84%B0
MD5:
4868b9e7459e87f6d9534ea998d5c684
SHA1:
201cff8d5388926013a096e5229bbaf293f6aef8
Base64:
5YSw