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