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