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