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