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