C:
char c = '\uB1E3';
printf("%c\n", c); // Output: 뇣
JavaScript:
const char = '\uB1E3';
console.log(char); // Output: 뇣
Java:
char c = '\uB1E3';
System.out.println(c); // Output: 뇣
JSON:
{"text": "\uB1E3"} // Value: 뇣
Python:
char = '\uB1E3'
print(char) # Output: 뇣
Perl:
my $char = "\x{B1E3}";
print $char; # Output: 뇣
PHP:
$char = "\x{B1E3}";
echo $char; // Output: 뇣
Ruby:
char = "\u{B1E3}"
puts char # Output: 뇣
Rust:
let c = '\u{B1E3}';
println!("{}", c); // Output: 뇣
Go:
char := '\uB1E3'
fmt.Printf("%c\n", char) // Output: 뇣
CSS:
/* CSS content property */
.element::before {
content: "\00B1E3"; /* 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=%EB%87%A3
MD5:
de4e78533fcf4847e692e7fb8c87115a
SHA1:
2f16a2368c3bcdbaf7dc2d1738e7e7a41c19f9fc
Base64:
64ej