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