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