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