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