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