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