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