C:
char c = '\uB1E8';
printf("%c\n", c); // Output: 뇨
JavaScript:
const char = '\uB1E8';
console.log(char); // Output: 뇨
Java:
char c = '\uB1E8';
System.out.println(c); // Output: 뇨
JSON:
{"text": "\uB1E8"} // Value: 뇨
Python:
char = '\uB1E8'
print(char) # Output: 뇨
Perl:
my $char = "\x{B1E8}";
print $char; # Output: 뇨
PHP:
$char = "\x{B1E8}";
echo $char; // Output: 뇨
Ruby:
char = "\u{B1E8}"
puts char # Output: 뇨
Rust:
let c = '\u{B1E8}';
println!("{}", c); // Output: 뇨
Go:
char := '\uB1E8'
fmt.Printf("%c\n", char) // Output: 뇨
CSS:
/* CSS content property */
.element::before {
content: "\00B1E8"; /* 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%A8
MD5:
a6e10b51cb591cb6f776d19e17bee724
SHA1:
1f9d2b0e38fed939029a80bed6b90c734d6657e5
Base64:
64eo