C:
char c = '\uBE89';
printf("%c\n", c); // Output: 뺉
JavaScript:
const char = '\uBE89';
console.log(char); // Output: 뺉
Java:
char c = '\uBE89';
System.out.println(c); // Output: 뺉
JSON:
{"text": "\uBE89"} // Value: 뺉
Python:
char = '\uBE89'
print(char) # Output: 뺉
Perl:
my $char = "\x{BE89}";
print $char; # Output: 뺉
PHP:
$char = "\x{BE89}";
echo $char; // Output: 뺉
Ruby:
char = "\u{BE89}"
puts char # Output: 뺉
Rust:
let c = '\u{BE89}';
println!("{}", c); // Output: 뺉
Go:
char := '\uBE89'
fmt.Printf("%c\n", char) // Output: 뺉
CSS:
/* CSS content property */
.element::before {
content: "\00BE89"; /* 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%BA%89
MD5:
e0144488b653bc5cb35f751f8f3f73a7
SHA1:
e3059cb9ff91282f4ee87b01d42aeaddf129e216
Base64:
67qJ