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