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