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