C:
char c = '\uB8AC';
printf("%c\n", c); // Output: 뢬
JavaScript:
const char = '\uB8AC';
console.log(char); // Output: 뢬
Java:
char c = '\uB8AC';
System.out.println(c); // Output: 뢬
JSON:
{"text": "\uB8AC"} // Value: 뢬
Python:
char = '\uB8AC'
print(char) # Output: 뢬
Perl:
my $char = "\x{B8AC}";
print $char; # Output: 뢬
PHP:
$char = "\x{B8AC}";
echo $char; // Output: 뢬
Ruby:
char = "\u{B8AC}"
puts char # Output: 뢬
Rust:
let c = '\u{B8AC}';
println!("{}", c); // Output: 뢬
Go:
char := '\uB8AC'
fmt.Printf("%c\n", char) // Output: 뢬
CSS:
/* CSS content property */
.element::before {
content: "\00B8AC"; /* 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%A2%AC
MD5:
7a292cbca647d62a6f681b60eb0ac286
SHA1:
becbcc774f017da51da0fab82f13a212b82452df
Base64:
66Ks