C:
char c = '\uB8A7';
printf("%c\n", c); // Output: 뢧
JavaScript:
const char = '\uB8A7';
console.log(char); // Output: 뢧
Java:
char c = '\uB8A7';
System.out.println(c); // Output: 뢧
JSON:
{"text": "\uB8A7"} // Value: 뢧
Python:
char = '\uB8A7'
print(char) # Output: 뢧
Perl:
my $char = "\x{B8A7}";
print $char; # Output: 뢧
PHP:
$char = "\x{B8A7}";
echo $char; // Output: 뢧
Ruby:
char = "\u{B8A7}"
puts char # Output: 뢧
Rust:
let c = '\u{B8A7}';
println!("{}", c); // Output: 뢧
Go:
char := '\uB8A7'
fmt.Printf("%c\n", char) // Output: 뢧
CSS:
/* CSS content property */
.element::before {
content: "\00B8A7"; /* 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%A2%A7
MD5:
9f325100d4c1727a89517361be83a0bf
SHA1:
f3a7867fe2231eeb73177fc023a9a3342904a23f
Base64:
66Kn