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