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