C:
char c = '\u770C';
printf("%c\n", c); // Output: 県
JavaScript:
const char = '\u770C';
console.log(char); // Output: 県
Java:
char c = '\u770C';
System.out.println(c); // Output: 県
JSON:
{"text": "\u770C"} // Value: 県
Python:
char = '\u770C'
print(char) # Output: 県
Perl:
my $char = "\x{770C}";
print $char; # Output: 県
PHP:
$char = "\x{770C}";
echo $char; // Output: 県
Ruby:
char = "\u{770C}"
puts char # Output: 県
Rust:
let c = '\u{770C}';
println!("{}", c); // Output: 県
Go:
char := '\u770C'
fmt.Printf("%c\n", char) // Output: 県
CSS:
/* CSS content property */
.element::before {
content: "\00770C"; /* 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=%E7%9C%8C
MD5:
3379515d82cb6281db086c23d6d15f15
SHA1:
7800f7c4e48fed909a493f29b96b26c46a6b9a76
Base64:
55yM