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