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