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